-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.79 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "tunic",
"version": "2.0.0",
"description": "A documentation-block parser.",
"main": "dist/tunic.js",
"scripts": {
"bench": "babel-node bench/tunic",
"build": "babel src --out-dir dist",
"coveralls": "nyc report -r text-lcov | coveralls",
"pretest": "xo '{src,test}/**'",
"test": "nyc ava -v",
"posttest": "nyc report -r lcov",
"watch": "chokidar '{src,test}/**' -c 'npm test'"
},
"repository": "togajs/tunic",
"keywords": [
"tunic",
"parser",
"documentation",
"docblock",
"docs",
"doc"
],
"author": "Shannon Moeller <[email protected]> (http://shannonmoeller.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/togajs/tunic/issues"
},
"homepage": "https://github.com/togajs/tunic",
"dependencies": {
"regx": "^1.0.4"
},
"devDependencies": {
"ava": "^0.13.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.7.2",
"benchmark": "^2.1.0",
"chokidar-cli": "^1.2.0",
"coveralls": "^2.11.9",
"highlight.js": "^9.2.0",
"nyc": "^6.1.1",
"xo": "^0.13.0"
},
"engines": {
"node": ">= 0.12"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"nyc": {
"require": [
"babel-register",
"babel-polyfill"
]
},
"xo": {
"rules": {
"brace-style": [
2,
"stroustrup"
],
"eqeqeq": [
2,
"allow-null"
],
"no-eq-null": 0,
"object-curly-spacing": [
2,
"always"
],
"operator-linebreak": [
2,
"before"
],
"babel/object-curly-spacing": [
2,
"always"
]
}
}
}