forked from hejianxian/vddl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.77 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
70
71
72
73
{
"name": "vddl",
"version": "0.7.1",
"description": "Vue components for modifying lists with the HTML5 drag & drop API.",
"jsnext": "dist/vddl.runtime.esm.js",
"main": "dist/vddl.runtime.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "node scripts/clean.js",
"build:runtime": "rollup -c",
"build:compiler": "rollup -c --compiler",
"build": "npm run clean && npm run build:runtime && npm run build:compiler",
"watch": "rollup -c -w",
"lint": "eslint src/*",
"prepublish": "npm run lint && npm run build",
"docs": "docsify serve ./docs",
"test": "ava"
},
"files": [
"dist/",
"src/"
],
"author": "Hejx <[email protected]>",
"license": "MIT",
"dependencies": {
"vue": "^2.4.2"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browser-env": "^3.1.0",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-html": "^1.5.3",
"eslint-plugin-import": "^1.16.0",
"less": "^2.7.1",
"require-extension-hooks": "^0.3.0",
"require-extension-hooks-babel": "^0.1.1",
"require-extension-hooks-vue": "^0.4.0",
"rollup": "^0.36.3",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-vue": "^2.2.6",
"rollup-watch": "^2.5.0"
},
"homepage": "https://github.com/hejianxian/vddl#readme",
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"ava": {
"files": [
"./test/vddl-*.js"
],
"babel": "inherit",
"require": [
"./test/helpers/setup.js"
]
},
"nyc": {
"extension": [
".js",
".vue"
]
}
}