-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "handlebars-source-locators",
"version": "1.0.0",
"description": "Puts source-position markers into the Handlebars output",
"repository": {
"type": "git",
"url": "[email protected]:nknapp/handlebars-source-locators.git"
},
"homepage": "https://github.com/nknapp/handlebars-source-locators",
"author": {
"name": "Nils Knappmeier",
"email": "[email protected]",
"url": "https://github.com/nknapp"
},
"bugs": {
"url": "https://github.com/nknapp/handlebars-source-locators/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": {},
"peerDependencies": {
"handlebars": "^4.0.6"
},
"devDependencies": {
"chai": "^3.5.0",
"ghooks": "^1.0.3",
"handlebars": "^4.0.6",
"mocha": "^2.3.3",
"standard": "^9.0.1",
"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": []
}