-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 933 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
{
"name": "depject-scripts",
"description": "",
"version": "0.0.0",
"homepage": "https://github.com/depject/depject-scripts",
"repository": {
"type": "git",
"url": "git://github.com/depject/depject-scripts.git"
},
"dependencies": {
"depject": "^3.2.0"
},
"devDependencies": {
"browserify": "^14.0.0",
"standard": "^8.6.0"
},
"scripts": {
"test": "npm run test:node && npm run test:deps && npm run test:lint",
"test:node": "tape test/*.js",
"test:lint": "standard",
"test:deps": "dependency-check . && dependency-check . --extra --no-dev",
"test:coverage": "NODE_ENV=test istanbul cover tape test/*.js",
"build": "browserify expose.js > expose.bundle.js"
},
"standard": {
"ignore": [
"expose.bundle.js"
],
"globals": [
"expose"
]
},
"author": "'Dominic Tarr' <[email protected]> (http://dominictarr.com)",
"license": "MIT"
}