forked from ViacomInc/data-point
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.81 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
67
68
69
70
{
"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": "eslint '**/*.js'",
"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": {
"@types/jest": "^24.0.18",
"all-contributors-cli": "^6.7.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"lerna": "^3.15.0",
"lint-staged": "^9.2.0",
"prettier": "1.18.2",
"prettier-package-json": "^2.1.0",
"supertest": "^4.0.2"
},
"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 --write",
"eslint --quiet --fix",
"git add",
"jest --bail --findRelatedTests"
]
},
"dependencies": {}
}