-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1009 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
{
"name": "render-stencil",
"description": "",
"keywords": [],
"author": "Jordan Sinko <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/JordanSinko/render-stencil.git"
},
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "run-s test:format test:unit",
"test:format": "prettier-check --single-quote src/**/*.js",
"test:unit": "nyc colortape src/__tests__/*.spec.js",
"cover": "run-s test:unit cover:unit",
"cover:unit": "nyc report --reporter=text-lcov > coverage.lcov"
},
"homepage": "https://github.com/JordanSinko/render-stencil#readme",
"bugs": "https://github.com/JordanSinko/render-stencil/issues",
"devDependencies": {
"@types/tape": "^4.2.32",
"colortape": "^0.1.2",
"coveralls": "^3.0.2",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"prettier": "^1.14.3",
"prettier-check": "^2.0.0",
"tape": "^4.9.1"
},
"engines": {
"node": ">=6"
}
}