-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1012 Bytes
/
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
{
"name": "band-aid-plugin",
"version": "0.0.0",
"description": "CSS Band Aid Webpack Plugin",
"main": "index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"test": "mocha && npm run lint",
"lint": "eslint ./",
"prepublish": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/css-band-aid/band-aid-plugin.git"
},
"author": "Matthew L Smith <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/css-band-aid/band-aid-plugin/issues"
},
"homepage": "https://github.com/css-band-aid/band-aid-plugin",
"devDependencies": {
"babel": "^5.0.9",
"babel-eslint": "^3.0.1",
"css-loader": "^0.10.1",
"eslint": "^0.19.0",
"file-loader": "^0.8.1",
"less": "^2.5.0",
"less-loader": "^2.2.0",
"style-loader": "^0.10.1",
"webpack": "^1.8.8"
},
"peerDependencies": {
"webpack": "^1.8.2"
},
"dependencies": {
"css-band-aid": "^4.2.0"
}
}