-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.43 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
44
45
46
47
48
{
"name": "nunjucks-tag",
"version": "1.1.0",
"description": "provide nunjucks base tag to make it easy to write custom tag",
"dependencies": {
"delegates": "^0.1.0"
},
"devDependencies": {
"autod": "*",
"beautify-benchmark": "^0.2.4",
"benchmark": "^1.0.0",
"eslint": "^1.8.0",
"eslint-config-egg": "~1.0.1",
"expect.js": "~0.3.1",
"mocha": "^2.3.4",
"once": "^1.3.2",
"pedding": "^1.0.0",
"rimraf": "^2.3.3",
"should": "6",
"sinon": "~1.17.2",
"istanbul": "^0.4.1",
"supertest": "^1.1.0",
"nunjucks": "~2.2.0"
},
"main": "index.js",
"files": [
"bin",
"lib",
"index.js"
],
"scripts": {
"lint": "eslint lib test",
"test": "npm run lint && npm run test-local",
"test-local": "TEST_REPORTER=spec NODE_ENV=test ./node_modules/.bin/_mocha --recursive test --bail",
"cov": "TEST_REPORTER=spec NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive test --bail",
"ci": "npm run lint && npm run cov",
"ci-travis": "npm run lint && TEST_REPORTER=spec NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --recursive test --bail"
},
"homepage": "https://github.com/node_modules/nunjucks-tag",
"repository": {
"type": "git",
"url": "[email protected]/node_modules/nunjucks-tag.git"
},
"engines": {
"node": ">= 4.0.0"
},
"license": "MIT"
}