forked from edge-js/edge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
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
{
"name": "edge.js",
"version": "1.1.4",
"description": "Node.js logical templating engine with fresh air",
"main": "index.js",
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "./node_modules/.bin/nyc npm run test:local",
"test:win": "set FORCE_COLOR=true && node bin/index.js --win",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "amanvirk,adonisjs",
"license": "MIT",
"devDependencies": {
"benchmark": "^2.1.4",
"cheerio": "^1.0.0-rc.2",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"dedent-js": "^1.0.1",
"japa": "^1.0.6",
"japa-cli": "^1.0.1",
"node-req": "^2.1.0",
"nunjucks": "^3.0.1",
"nyc": "^11.4.1",
"semver": "^5.5.0",
"standard": "^10.0.3",
"zombie": "^5.0.7"
},
"dependencies": {
"debug": "^3.1.0",
"encodeurl": "^1.0.2",
"escape-html": "^1.0.3",
"esprima": "^4.0.0",
"indent-string": "^3.2.0",
"lodash": "^4.17.4",
"node-exceptions": "^3.0.0",
"require-uncached": "^1.0.3",
"upcast": "^2.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}