-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
66 lines (66 loc) · 1.49 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": "@firstandthird/toc",
"version": "2.1.0",
"description": "Table Of Content Library",
"main": "index.js",
"module": "dist/toc.js",
"keywords": [
"toc",
"table",
"content"
],
"scripts": {
"start": "scriptkit",
"build": "scriptkit build",
"dev": "scriptkit dev",
"pretest": "scriptkit build",
"test": "cat test/toc.test.dist.bundle.js | tape-run --static . --browser phantomjs --render tap-spec",
"prepublishOnly": "scriptkit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgallen23/toc.git"
},
"author": "First+Third",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgallen23/toc/issues"
},
"homepage": "https://github.com/jgallen23/toc#readme",
"devDependencies": {
"eslint-config-firstandthird": "^4.4.0",
"eslint-plugin-import": "^2.18.0",
"phantomjs-prebuilt": "^2.1.16",
"scriptkit": "^3.0.0",
"tap-spec": "^5.0.0",
"tape-rollup": "^4.6.4",
"tape-run": "^6.0.0"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": "firstandthird"
},
"scriptkit": {
"serve": {
"enabled": true
},
"files": {
"dist/toc.js": "index.js",
"test/toc.test.dist.js": "test/toc.test.js"
},
"scripts": {
"babel": {
"exclude": [
"node_modules/tape-rollup/*"
]
}
}
},
"dependencies": {
"domassist": "^2.2.0",
"scroll-triggers": "^4.1.0",
"smooth-scroller": "^2.1.0"
}
}