-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "sequelize-state-machine",
"version": "0.1.1",
"description": "Sequelize model state machine plugin",
"main": "dist",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "yarn tsc",
"tsc": "tsc --project tsconfig.compile.json",
"tsc:w": "tsc --project tsconfig.json -w",
"test": "yarn test:lint && yarn test:coverage",
"test:unit": "cross-env NODE_ENV=test mocha",
"test:coverage": "cross-env NODE_ENV=test nyc mocha",
"test:lint": "tslint --project tsconfig.json",
"test:lint:fix": "tslint --project tsconfig.json --fix",
"prettier": "prettier '{src,test}/**/*.ts' --write"
},
"keywords": [
"sequelize",
"state machine",
"state",
"machine"
],
"repository": {
"type": "git",
"url": "[email protected]:billyadelphia/sequelize-state-machine.git"
},
"author": "billy putra barokah <[email protected]>",
"homepage": "https://github.com/billyadelphia/sequelize-state-machine",
"bugs": {
"url": "https://github.com/billyadelphia/sequelize-state-machine/issues"
},
"devDependencies": {
"@types/validator": "^13.1.0",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"sequelize": "^6.3.5",
"typescript": "^4.0.2"
},
"dependencies": {
"tslib": "^2.0.1"
}
}