-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.03 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
{
"name": "tinyjs-plugin-scroller",
"version": "0.2.0",
"author": "fangjun.yfj",
"description": "滚动插件",
"keywords": [
"tinyjs",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/ant-tinyjs/tinyjs-plugin-scroller.git"
},
"main": "dist/index.debug.js",
"files": [
"dist",
"src",
"demo",
"test"
],
"scripts": {
"dev": "rollup -c --watch",
"prebuild": "rm -rf dist",
"build:debug": "rollup -c",
"build:prod": "rollup -c --environment BUILD:production",
"build": "npm run build:debug && npm run build:prod",
"predoc": "rm -rf docs",
"doc": "jsdoc README.md src -r -d docs -t node_modules/docdash",
"lint": "eslint src test/unit/**/*.test.js",
"test": "mocha ./test/unit/**/*.test.js --recursive --require ./test/setup.js",
"ci": "npm run lint && npm run test",
"preversion": "npm run ci",
"postversion": "git push --tags",
"prepublish": "npm run build"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"docdash": "^0.4.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jsdoc": "3.5.5",
"mocha": "^5.0.0",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-progress": "^0.4.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "^4.2.2",
"sinon-chai": "^2.8.0"
},
"bugs": {
"url": "https://github.com/ant-tinyjs/tinyjs-plugin-scroller/issues"
},
"homepage": "https://github.com/ant-tinyjs/tinyjs-plugin-scroller#readme"
}