-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "teraslice-asset-template",
"description": "Teraslice asset bundle template starter",
"version": "0.0.1",
"author": "Kimbro Staken",
"license": "MIT",
"dependencies": {
},
"devDependencies": {
"lodash": "^4.17.10",
"@terascope/teraslice-op-test-harness": "^1.0.0",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jasmine": "^2.10.1",
"jasmine": "^3.1.0",
"jasmine-spec-reporter": "^4.2.1",
"nyc": "^12.0.2"
},
"scripts": {
"lint": "eslint *.js",
"lint:fix": "eslint --fix *.js",
"test": "nyc -x spec/ --reporter=text-summary jasmine && nyc report --reporter=html",
"report-coverage": "nyc report --reporter=text-lcov > coverage/coverage.lcov && codecov"
},
"nyc": {
"cache": true,
"all": true,
"include": [
"*.js"
],
"reporter": [
"text-summary",
"html",
"lcov",
"json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/terascope/teraslice-asset-template.git"
}
}