-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.31 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": "chrome-dev-webpack-plugin",
"version": "0.3.3",
"description": "A plugin to help streamlining chrome extension development by providing features for maintaining and synchronizing manifest.json.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js ./",
"test:travis": "npm run test",
"test:dev": "npm run test; ./node_modules/nyc/bin/nyc.js report --reporter=lcov",
"test": "./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/_mocha test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:slawo/chrome-dev-webpack-plugin.git"
},
"author": "Slawomir CALUCH",
"license": "ISC",
"bugs": {
"url": "https://github.com/slawo/chrome-dev-webpack-plugin/issues"
},
"homepage": "https://github.com/slawo/chrome-dev-webpack-plugin#README",
"files": [
"index.js",
"lib",
"examples",
"test"
],
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=4.0"
},
"dependencies": {},
"peerDependencies": {
"webpack": "1 || ^2 || ^2.1.0-beta || ^2.2.0-rc"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.14.0",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"webpack": "^1.14.0"
}
}