-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 894 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 894 Bytes
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": "@grown/render",
"version": "0.0.21",
"main": "index.js",
"author": "Alvaro Cabrera <pateketrueke@gmail.com>",
"license": "MIT",
"types": "index.d.ts",
"files": [
"*.d.ts",
"*.js"
],
"scripts": {
"dev": "npm run test:unit -- -w",
"test": "npm run coverage -- npm run test:unit --",
"test:ci": "npm test && nyc report -r lcov",
"test:dev": "npm test && nyc report -r html",
"test:run": "NODE_ENV=test _mocha --exit --recursive -bR spec --colors",
"test:unit": "npm run test:run tests/*.test.js --",
"coverage": "nyc -s -x '**/tests/**' -x '**/*.test.js'"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"consolidate": "^0.16.0",
"debug": "^4.1.0"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"pug": "^3.0.2",
"testdouble": "^3.16.1"
}
}