-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "docsify-pagination",
"version": "2.10.1",
"description": "pagination plugin of docsify",
"main": "src",
"scripts": {
"start": "rollup -c -w",
"example": "serve",
"clean": "rimraf ./dist",
"prebuild": "run-s clean",
"build": "run-s build:*",
"build:rollup": "rollup -c",
"build:minify": "uglifyjs --compress --mangle --output ./dist/docsify-pagination.min.js -- ./dist/docsify-pagination.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/imyelo/docsify-pagination.git"
},
"keywords": [
"docsify",
"pagination"
],
"files": [
"src",
"dist",
"README.md"
],
"author": "yelo",
"license": "MIT",
"bugs": {
"url": "https://github.com/imyelo/docsify-pagination/issues"
},
"homepage": "https://github.com/imyelo/docsify-pagination#readme",
"dependencies": {
"component-closest": "^1.0.1",
"component-matches-selector": "^0.1.6",
"component-query": "0.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"cssnano": "^3.10.0",
"deepmerge": "^2.0.1",
"npm-run-all": "^4.1.2",
"resolve-from": "^4.0.0",
"rimraf": "^2.6.2",
"rollup": "^2.79.2",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^1.5.1",
"serve": "^13.0.2",
"uglify-js": "^3.3.20"
}
}