-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
60
61
62
63
64
65
66
{
"name": "thought-plugin-bootprint",
"version": "1.1.0",
"description": "A thought-plugin for Bootprint modules",
"repository": {
"type": "git",
"url": "[email protected]:bootprint/thought-plugin-bootprint.git"
},
"homepage": "https://github.com/bootprint/thought-plugin-bootprint",
"author": {
"name": "Nils Knappmeier",
"email": "[email protected]",
"url": "https://github.com/nknapp"
},
"bugs": {
"url": "https://github.com/bootprint/thought-plugin-bootprint/issues"
},
"main": "src/index.js",
"license": "MIT",
"scripts": {
"lint": "eslint --fix .",
"test": "mocha && npm run lint && npm run thought",
"coverage": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly",
"postcoverage": "istanbul check-coverage coverage/coverage.json --statements 100",
"thought": "thought run -a && cd examples/example-project && thought run -a",
"version": "thoughtful changelog -o -a && npm run thought"
},
"dependencies": {
"bootprint": "^2.0.0",
"customize": "^2.0.1",
"customize-engine-handlebars": "^2.2.2",
"customize-engine-less": "^2.0.0",
"thought-plugin-jsdoc": "^1.0.1",
"tree-from-paths": "^1.0.0"
},
"devDependencies": {
"chai": "^4.0.2",
"deep-aplus": "^1.0.4",
"dirty-chai": "^2.0.0",
"eslint": "^4.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"thought": "^1.4.0",
"thought-plugin-thought-plugin": "^0.1.3",
"thoughtful-release": "^0.3.1",
"trace-and-clarify-if-possible": "^1.0.0"
},
"peerDependencies": {
"thought": "^1.4.0"
},
"standard": {
"ignore": [
"test/fixtures/**"
]
},
"files": [
"src"
],
"keywords": []
}