-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1004 Bytes
/
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
{
"name": "octonom-lerna",
"private": true,
"description": "Object Document Mapper for any database",
"author": "André Gaul <andre@paperhive.org>",
"license": "MIT",
"scripts": {
"lint": "tslint -p tsconfig.json -e '**/node_modules/**/*.ts' -e 'packages/*/build/**/*' packages/**/*.ts",
"test": "mocha --opts ./mocha.opts",
"test-cover": "nyc npm test",
"test-cover-submit": "nyc report --reporter=json && codecov -f coverage/*.json"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "7.1.0",
"@types/chai-subset": "^1.3.1",
"@types/mocha": "^5.0.0",
"@types/sinon": "^5.0.0",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"chai-as-promised": "^7.0.0",
"chai-subset": "^1.6.0",
"codecov": "^3.0.0",
"lerna": "^2.1.2",
"mocha": "^5.0.0",
"nyc": "^11.2.1",
"sinon": "^5.0.0",
"sinon-chai": "^3.0.0",
"ts-node": "^5.0.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
}
}