-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.09 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
{
"name": "@zcorky/movable",
"version": "1.0.3",
"description": "Enable the element movable anywhere.",
"main": "lib/index.js",
"jsnext:main": "lib/index.esm.js",
"module": "lib/index.esm.js",
"scripts": {
"clean": "rm -rf ./lib",
"lint": "eslint src",
"copy": "cp -rf lib example",
"start": "npm run dev",
"dev": "concurrently \"npm run watch\" \"npm run serve\" \"npm run open\"",
"serve": "cd example && cliz-serve",
"watch": "rollup -c config/rollup.config.umd.js -o ./example/lib/index.umd.js -w",
"open": "open-cli http://localhost:9000",
"build:self": "rollup -c config/rollup.config.js",
"build:esm": "rollup -c config/rollup.config.esm.js",
"build:umd": "rollup -c config/rollup.config.umd.js",
"build": "npm run clean && npm run build:self && npm run build:esm && npm run build:umd && npm run copy",
"test": "npm run lint && mocha -R spec --compilers js:babel-register",
"release": "npm run test && git commit -am $npm_package_version && git tag $npm_package_version && git push origin master && git push --tags",
"deploy": "npm run build && gh-pages -d example"
},
"author": "zcorky",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/zcorky/movable.git"
},
"bugs": {
"url": "https://github.com/zcorky/movable/issues"
},
"devDependencies": {
"@cliz/hotreload": "^0.1.6",
"@cliz/serve": "^0.1.2",
"babel-core": "6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"chai": "^4.1.2",
"concurrently": "^5.3.0",
"es5-shim": "4.5.10",
"eslint": "4.18.2",
"expect.js": "0.3.1",
"gh-pages": "^2.0.1",
"mocha": "3.5.3",
"open-cli": "^6.0.1",
"rollup": "0.57.1",
"rollup-plugin-babel": "3.0.3",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-node-resolve": "3.0.3",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"@zcorky/dom": "^0.0.3",
"babel-runtime": "6.26.0"
},
"files": [
"lib"
]
}