-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "mo-vue-table",
"version": "0.1.7",
"description": "",
"main": "dist/mo-vue-table.cjs.js",
"module": "dist/mo-vue-table.esm.js",
"unpkg": "dist/mo-vue-table.js",
"scripts": {
"build": "node build/build.js",
"lint": "npm run lint:src && npm run lint:build && npm run lint:demo && npm run lint:tools",
"lint:src": "eslint src",
"lint:build": "eslint build",
"lint:demo": "eslint demo",
"lint:tools": "eslint tools",
"serve:demo": "node tools/browserSync.js"
},
"files": [
"dist/*.js",
"dist/*.js.map"
],
"engines": {
"node": ">=6.10.3"
},
"author": "Onur Dogangönül <contact@dinony.com>",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4",
"mo-query": ">= 0.1.3 < 1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-do-expressions": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"browser-sync": "^2.18.13",
"eslint": "^4.3.0",
"pretty-bytes": "^4.0.2",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"uglify-js": "^3.0.27"
}
}