-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
41 lines (41 loc) · 1.18 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
{
"private": true,
"repository": "https://github.com/LinkedDataFragments/Server.js/",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=10.0"
},
"devDependencies": {
"chai": "^4.0.0",
"coveralls": "^3.0.9",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.22.0",
"lerna": "^4.0.0",
"manual-git-changelog": "^1.0.1",
"mocha": "^8.0.0",
"nyc": "^15.0.0",
"pre-commit": "^1.1.3",
"sinon": "^1.17.4",
"sinon-chai": "^3.0.0",
"supertest": "^6.0.0"
},
"pre-commit": [
"lint",
"test"
],
"scripts": {
"test-changed": "lerna run test --since HEAD",
"lint-changed": "lerna run lint --since HEAD",
"mocha": "mocha \"packages/*/test/**/*-test.js\" --recursive --require ./test/test-setup --timeout 500",
"test": "nyc npm run mocha",
"test-ci": "nyc --reporter=lcov npm run mocha",
"lint": "eslint packages/*/bin/* packages/*/lib packages/*/test",
"clean": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"publish": "lerna publish",
"publish-bare": "lerna exec -- npm publish --silent",
"postinstall": "lerna run prepare",
"version": "manual-git-changelog onversion"
}
}