-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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-unit-testing",
"version": "1.0.0",
"description": "Unit-testing-tools for bootprint-projects",
"repository": {
"type": "git",
"url": "[email protected]:bootprint/bootprint-unit-testing.git"
},
"homepage": "https://github.com/bootprint/bootprint-unit-testing",
"author": {
"name": "Nils Knappmeier",
"email": "[email protected]",
"url": "https://github.com/nknapp"
},
"bugs": {
"url": "https://github.com/bootprint/bootprint-unit-testing/issues"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"preformat": "standard --version || npm -g install standard",
"format": "standard --format",
"pretest": "standard --version || npm -g install standard",
"test": "mocha --recursive && standard",
"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"
},
"dependencies": {
"bootprint": "^1.0.0",
"cheerio": "^0.22.0",
"m-io": "^0.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"ghooks": "^1.0.3",
"mocha": "^2.3.3",
"thoughtful-release": "^0.3.0",
"trace-and-clarify-if-possible": "^1.0.0"
},
"standard": {
"ignore": [
"test/fixtures/**"
]
},
"files": [
"index.js",
"lib",
"bin"
],
"config": {
"ghooks": {
"pre-commit": "standard"
}
},
"keywords": []
}