-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "prundupify",
"version": "1.0.0",
"description": "Removes duplicate files in browserify completly",
"main": "index.js",
"scripts": {
"test": "node test/test.js",
"coverage": "istanbul cover test/test.js",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls --verbose"
},
"keywords": [
"browserify",
"browserify-plugin"
],
"author": "Christian Tellnes <[email protected]> (http://christian.tellnes.com/)",
"license": "MIT",
"dependencies": {
"through2": "^2.0.1"
},
"devDependencies": {
"browserify": "^13.0.0",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2"
},
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tellnes/prundupify.git"
},
"bugs": {
"url": "https://github.com/tellnes/prundupify/issues"
},
"homepage": "https://github.com/tellnes/prundupify#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}