-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.39 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
49
50
51
52
53
54
{
"name": "broccoli-symbolizer",
"version": "0.4.2",
"description": "Combine SVG files into one as symbols",
"scripts": {
"prebuild": "rimraf lib",
"build": "babel src --out-dir lib",
"prewatch": "rimraf lib",
"watch": "babel src --out-dir lib --watch",
"prepublish": "npm run build && npm run test",
"test": "mocha test/ --timeout 8000"
},
"main": "lib/index.js",
"author": "Ivan Votti <ivanvotti@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ivanvotti/broccoli-symbolizer",
"repository": {
"type": "git",
"url": "https://github.com/ivanvotti/broccoli-symbolizer.git"
},
"bugs": {
"url": "https://github.com/ivanvotti/broccoli-symbolizer/issues"
},
"keywords": [
"broccoli",
"broccoli-plugin",
"svgstore"
],
"dependencies": {
"broccoli-concat": "^2.2.0",
"broccoli-persistent-filter": "^1.2.0",
"cheerio": "^0.20.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.13.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"broccoli": "^0.16.9",
"broccoli-fixture": "^0.1.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"mocha": "^2.5.1",
"mocha-eslint": "^2.0.2",
"rimraf": "^2.5.4"
},
"babel": {
"presets": [
"es2015"
]
}
}