-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 980 Bytes
/
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
{
"name": "icepick-style",
"version": "0.1.0",
"main": "lib/index.js",
"scripts": {
"build": "exit 0",
"test": "npm run test:lint && npm run test:unit",
"test:ci": "npm run test:lint && npm run test:ci:unit",
"test:lint": "xo",
"test:unit": "nyc mocha test/index.js",
"test:ci:unit": "nyc --reporter=text-lcov --reporter=html mocha test/index.js"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"icepick": "github:orangemug/icepick#feature/added-replace"
},
"devDependencies": {
"@mapbox/mapbox-gl-style-spec": "^13.15.0",
"coveralls": "^3.1.0",
"mocha": "^7.1.2",
"node": "^14.2.0",
"nyc": "^15.0.1",
"xo": "^0.30.0"
},
"nyc": {
"check-coverage": true,
"exclude": [
"test/**/*.js"
],
"report-dir": "artifacts/coverage",
"reporter": [
"html",
"text-summary"
],
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
}
}