-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "comment-patterns",
"version": "0.12.2",
"description": "A list of comment-patterns for different languages",
"main": "index.js",
"scripts": {
"pretest": "standard --version || npm -g install standard",
"test": "node build/generate-db.js && jasmine",
"test-with-standard": "node build/generate-db.js && jasmine && standard",
"prepublish": "node build/generate-db.js",
"update-from-groc": "node build/update-from-groc.js",
"preformat": "standard --version || npm -g install standard",
"format": "standard --format"
},
"repository": {
"type": "git",
"url": "https://github.com/nknapp/comment-patterns.git"
},
"author": "Nils Knappmeier",
"license": "MIT",
"bugs": {
"url": "https://github.com/nknapp/comment-patterns/issues"
},
"homepage": "https://github.com/nknapp/comment-patterns",
"devDependencies": {
"esformatter": "^0.10.0",
"groc": "^0.8.0",
"jasmine": "^3.2.0",
"json-literal": "^1.1.0",
"parse-code-context": "^0.1.3",
"should": "^13.2.3",
"verb": "^0.8.10",
"verb-cli": "^0.7.4"
},
"dependencies": {
"lodash": "^4.17.11"
},
"standard": {
"ignore": [
"spec/fixtures/**",
"db-generated/**"
]
},
"keywords": []
}