-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.08 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.08 KB
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
71
72
73
74
75
76
77
78
{
"name": "curiosity-frontend",
"version": "0.2.5",
"description": "Build testing",
"author": "cdcabrera",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/cdcabrera/t2.git"
},
"bugs": {
"url": "https://github.com/cdcabrera/t2/issues"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"roots": [
"src"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
},
"collectCoverageFrom": [
"src/**/*.js"
]
},
"standard-version": {
"skip": {
"changelog": false,
"commit": false,
"tag": false,
"bump": false
}
},
"scripts": {
"version:check": "node -p 'require(`./package.json`).version'",
"build": "run-s -l build:files test:integration",
"build:files": "sh ./scripts/build.sh",
"build:deps": "ncu --doctor -u --doctorInstall \"yarn\" --doctorTest \"yarn test:deps\"",
"release:ci": "bash ./.travis/release.sh",
"release": "standard-version",
"release:rebase": "sh ./.travis/rebase.sh",
"test": "run-s -l test:lint test:ci",
"test:ci": "export CI=true; jest --collectCoverage",
"test:clearCache": "jest --clearCache",
"test:deps": "run-s test build",
"test:dev": "eslint ./src; jest --roots=./src --watch",
"test:integration": "jest --roots=./tests",
"test:integration-dev": "jest --roots=./tests --watchAll",
"test:lint": "eslint ./src"
},
"dependencies": {},
"devDependencies": {
"npm-check-updates": "^12.5.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-esnext": "^4.0.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.4.0",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"standard-version": "^6.0.1"
}
}