-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "nunjucks-spaceless-filter",
"version": "1.0.0",
"description": "Strip line breaks and white space between tags.",
"keywords": [
"nunjucks",
"spaceless",
"filter",
"whitespace",
"line breaks"
],
"author": "SpaceCraft <[email protected]>",
"contributors": [
"Rob Lifford <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/spacecraftinc/nunjucks-spaceless-filter.git"
},
"bugs": "https://github.com/spacecraftinc/nunjucks-spaceless-filter/issues",
"engines": {
"node": ">= 4.0.0"
},
"main": "./index.js",
"dependencies": {},
"devDependencies": {
"csv": "^1.1.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"nunjucks": "^2.5.2"
},
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test istanbul test _mocha -- --check-leaks --recursive --reporter spec",
"lint": "eslint ."
}
}