This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "modelnize",
"version": "5.1.2",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && rm -rf es && npm run compile",
"ci": "npm run lint && npm run build && npm test && npm version patch",
"compile": "npm run compile:cjs && npm run compile:es",
"compile:cjs": "tsc -p tsconfig.prod.json",
"compile:es": "tsc -p tsconfig.prod.es.json",
"test": "npm run test:cjs && npm run test:es",
"test:cjs": "mocha 'test/**/*.ts*' --require=ts-node/register --require mocha-clean",
"test:es": "export TS_NODE_PROJECT=tsconfig.es.json && mocha 'test/**/*.ts*' --require=ts-node/register --require mocha-clean",
"watch": "tsc -p tsconfig.prod.json -w",
"check-coverage": "rm -rf .nyc_output && npm run coverage && nyc check-coverage",
"lint": "tslint '{src,test}/**/*.ts*'",
"fix": "npm run lint -- --fix",
"cd": "standard-version -m \"chore(release): %s [skip ci]\" && git push --follow-tags origin master && npm publish",
"lock": "git add 'package-lock.json' && (git diff-index --quiet HEAD || git commit -m 'Lock')",
"coverage": "nyc --extension=.ts --extension=.tsx --include=src/**/*.ts* --all --reporter=html mocha --require=ts-node/register --require source-map-support/register --recursive 'test/**/*.ts*'",
"codecov": "nyc report --reporter=json --reporter=html && codecov -f coverage/*.json",
"publish-local": "npm publish --registry=http://localhost:4873 --force"
},
"files": [
"lib",
"es"
],
"author": "",
"license": "ISC",
"peerDependencies": {
"sequelize": "^4.0.0"
},
"dependencies": {
"ts-trait": "^4.1.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/lodash": "^4.14.109",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.4",
"@types/sequelize": "^4.27.15",
"@types/sinon": "^4.3.1",
"chai": "^4.1.2",
"codecov": "^3.1.0",
"data-class-copy": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"mocha-clean": "^1.0.0",
"mysql2": "^1.5.3",
"nyc": "^11.7.1",
"prettier": "^1.19.1",
"sequelize": "^4.42.0",
"sinon": "^5.0.1",
"standard-version": "^4.4.0",
"ts-node": "^5.0.1",
"tslint": "^5.11.0",
"typescript": "^3.7.5"
}
}