-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "postinstall-build",
"version": "5.0.3",
"description": "Helper for conditionally building your npm package on postinstall in order to support git installs.",
"repository": {
"type": "git",
"url": "https://github.com/exogen/postinstall-build.git"
},
"bugs": {
"url": "https://github.com/exogen/postinstall-build/issues"
},
"main": "index.js",
"bin": {
"postinstall-build": "cli.js"
},
"files": [
"index.js",
"cli.js"
],
"scripts": {
"build": "npm run build:docs",
"build:docs": "doctoc --title \"## Contents\" README.md",
"check": "npm run lint && npm test",
"lint": "standard --verbose | snazzy",
"test": "cd test && npm test",
"test:reset": "cd test && npm run reset",
"test:reset:node_modules": "rimraf test/node_modules"
},
"pre-commit": [
"build:docs",
"lint"
],
"keywords": [
"npm",
"postinstall",
"build",
"lib",
"scripts"
],
"author": "Brian Beck",
"license": "MIT",
"devDependencies": {
"doctoc": "^1.2.0",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.4",
"snazzy": "^6.0.0",
"standard": "^10.0.0"
},
"dependencies": {}
}