-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
{
"name": "bootprint-base",
"version": "1.0.0",
"description": "The base configuration used by other Bootprint modules",
"main": "index.js",
"scripts": {
"pretest": "standard --version || npm -g install standard",
"test": "mocha && standard",
"preformat": "standard --version || npm -g install standard",
"format": "standard --fix",
"thought": "thought run -a",
"prethoughtcheck": "thought --version || npm -g install thought",
"thoughtcheck": "thought check-engines",
"version": "thoughtful changelog -o -a && npm run thought",
"preversion": "npm run thoughtcheck"
},
"repository": {
"type": "git",
"url": "https://github.com/bootprint/bootprint-base.git"
},
"author": "Nils Knappmeier",
"license": "MIT",
"bugs": {
"url": "https://github.com/bootprint/bootprint-base/issues"
},
"homepage": "https://github.com/bootprint/bootprint-base",
"dependencies": {
"bootstrap": "^3.3.2",
"cheerio": "^0.22.0",
"handlebars": "^4.0.6",
"highlight.js": "^8",
"jquery": "^2",
"json-stable-stringify": "^1.0.0",
"marked": "^0.3.3"
},
"devDependencies": {
"bootprint": "^1.0.0",
"chai": "^3.5.0",
"dirty-chai": "^2.0.1",
"ghooks": "^2.0.0",
"m-io": "0.4.0",
"mocha": "^3.2.0",
"thoughtful-release": "^0.3.0",
"trace-and-clarify-if-possible": "^1.0.0"
},
"peerDependencies": {
"bootprint": "^1.0.0"
},
"config": {
"ghooks": {
"pre-push": "thoughtful precommit && standard"
}
},
"files": [
"handlebars",
"less",
"index.js"
]
}