forked from ViacomInc/data-point
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.67 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
63
64
65
66
{
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"preinstall": "scripts/preinstall-script.js",
"precommit": "lint-staged",
"commit": "git-cz",
"test": "jest --coverage",
"posttest": "npm run run-examples",
"lint": "standard --verbose | snazzy",
"contributors:add": "all-contributors add",
"publish": "yarn run lint && jest --coverage && lerna publish --conventional-commits",
"next": "yarn run lint && jest --coverage && lerna publish --cd-version=prerelease --npm-tag=next --yes",
"watch": "jest --watchAll --coverage",
"run-examples": "scripts/run-examples.js"
},
"author": {
"name": "Acatl Pacheco",
"email": "[email protected]"
},
"devDependencies": {
"all-contributors-cli": "^4.10.1",
"commitizen": "latest",
"cz-conventional-changelog": "2.1.0",
"jest": "^23.6.0",
"lerna": "^2.5.1",
"lint-staged": "latest",
"prettier-standard": "^8.0.1",
"snazzy": "latest",
"standard": "^12.0.1",
"standard-version": "latest",
"supertest": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/utils/",
"/test/definitions/",
"<rootDir>/packages/data-point-cache/lib/cache.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"lint-staged": {
"*.js": [
"prettier-standard",
"git add",
"jest --bail --findRelatedTests"
]
},
"dependencies": {}
}