-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "ava-env",
"version": "2.0.1",
"description": "Test specific environment variables for ava",
"main": "index.js",
"repository": "https://github.com/ChocPanda/ava-env",
"author": "ChocPanda",
"license": "MIT",
"private": false,
"keywords": [
"ava",
"environment-variables",
"unit-testing"
],
"scripts": {
"commit": "git-cz",
"build": "rollup -c",
"test": "nyc ava",
"test:unit": "nyc ava",
"test:cov": "nyc report",
"test:report": "nyc ava --tap | tap-junit --output ./reports/ava --name test-results.xml",
"lint": "xo",
"lint:test": "xo",
"lint:fix": "xo --fix",
"lint:report": "xo --reporter junit > ./reports/xo/test-results.xml",
"release": "semantic-release",
"docs-toc": "markdown-toc --no-firsth1 --bullets=\"-\" -i ./README.md"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"ava": "^2.4.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "2.1.0",
"markdown-toc": "^1.2.0",
"nyc": "^14.0.0",
"rollup": "^1.26.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-copy": "^3.0.0",
"rollup-plugin-license": "^0.9.0",
"rollup-plugin-node-resolve": "^5.0.0",
"semantic-release": "^15.13.24",
"tap-junit": "^3.1.0",
"xo": "^0.25.0"
},
"xo": {
"prettier": "true"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}