-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "raf-manager",
"moduleName": "RAFManager",
"version": "0.3.0",
"description": "RAFManager is a simple requestAnimationFrame animation manager.",
"main": "./build/RAFManager.min.js",
"scripts": {
"lint": "eslint ./src --config=eslintrc.json",
"build-normal": "rollup -c",
"build-min": "rollup -c --min",
"build": "npm run build-normal && npm run build-min"
},
"authors": [
"ajiemath <ajiemath@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"rollup": "^0.54.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-license": "^0.5.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^1.2.5"
},
"dependencies": {
"core-js": "^2.5.7",
"es6-map": "^0.1.5"
}
}