-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "leaps",
"version": "0.0.9",
"description": "Declarative Vue.js animations library",
"module": "dist/leaps.esm.js",
"unpkg": "dist/leaps.js",
"main": "dist/leaps.js",
"scripts": {
"lint": "eslint ./src --fix",
"build": "NODE_ENV=production node scripts/build",
"demo": "webpack-dev-server --hot --inline --config ./demo/webpack.config.js",
"dev": "node scripts/watcher",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "bash scripts/docs-deploy.sh",
"test": "jest --config jest.config.json"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"browser-sync": "^2.26.3",
"chalk": "^2.4.2",
"chart.js": "^2.7.3",
"filesize": "^4.0.0",
"fs": "^0.0.1-security",
"gzip-size": "^5.0.0",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-vue": "^4.6.1",
"style-loader": "^0.23.1",
"util": "^0.11.1",
"vue": "2.5.22",
"vuepress": "^1.0.0-alpha.32"
},
"license": "MIT",
"keywords": [],
"maintainers": [
{
"name": "Abdelrahman3D",
"email": "abdelrahman3d@gmail.com"
}
],
"optionalDependencies": {},
"dependencies": {
"lodash.merge": "^4.6.1"
}
}