-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "named-urls",
"version": "0.0.0-development",
"description": "Simple named url patterns in Javascript",
"main": "dist/index.js",
"repository": "[email protected]:tricoder42/named-urls.git",
"author": "Tomáš Ehrlich <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"prepublish": "rollup -c rollup.config.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"codecov": "^3.0.0",
"condition-circle": "^1.5.0",
"jest": "^21.2.1",
"jest-junit": "^3.3.0",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"semantic-release": "^8.2.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"node_modules",
"scripts",
"dist",
"locale"
],
"coverageReporters": [
"html",
"lcov"
],
"testResultsProcessor": "jest-junit",
"transformIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"release": {
"branch": "master",
"verifyConditions": "condition-circle"
}
}