-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "snabbdom-toc",
"version": "2.0.1",
"description": "VNode to table of contents",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc",
"unit": "nyc ava",
"test": "run-s lint compile unit",
"lint": "eslint --ext .ts src/**/*",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yarom82/snabbdom-toc.git"
},
"keywords": [
"snabbdom",
"vnode",
"toc",
"table",
"of",
"contents"
],
"author": "Yarom Shoval <[email protected]> (yarom82)",
"contributors": [
"Shahar Or <[email protected]> (http://mightyi.am)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/yarom82/snabbdom-toc/issues"
},
"homepage": "https://github.com/yarom82/snabbdom-toc#readme",
"nyc": {
"extends": "nyc-config-100"
},
"devDependencies": {
"ava": "^0.24.0",
"eslint": "^4.9.0",
"eslint-config-standard-with-typescript": "^2.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-typescript": "^0.8.0",
"npm-run-all": "^4.1.1",
"nyc": "^11.2.1",
"nyc-config-100": "^1.0.1",
"typescript": "2.6.2",
"typescript-eslint-parser": "^9.0.0"
},
"dependencies": {
"snabbdom": "^0.7.0",
"snabbdom-decontextify": "^3.0.0",
"snabbdom-selector": "^2.0.0"
}
}