-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"name": "framez",
"version": "0.4.0",
"description": "Animation engine and utility functions for web",
"author": "John Grishin <[email protected]>",
"license": "MIT",
"repository": "exah/framez",
"main": "dist/index.umd.js",
"module": "lib/index.js",
"files": [
"lib",
"dist"
],
"tags": [
"animate",
"animation",
"requestanimationframe",
"css"
],
"scripts": {
"build": "run-s build:*",
"build:es6": "buble --objectAssign Object.assign -n modules -i src -o lib",
"build:umd": "cross-env NODE_ENV='production' rollup -c",
"prebuild": "npm run cleanup",
"watch": "run-p watch:*",
"watch:es6": "watch 'npm run build:es6' src",
"watch:umd": "rollup -c -w",
"prewatch": "npm run cleanup",
"lint": "eslint src",
"deploy": "np --any-branch",
"cleanup": "rimraf dist lib",
"preversion": "npm run build",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": "eslint"
},
"devDependencies": {
"babel-core": "6",
"buble": "^0.18.0",
"cross-env": "5.1.2",
"eslint": "^4.13.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"np": "2.16.1",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"rollup": "^0.52.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-babili": "^3.1.1",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.3.1",
"watch": "^1.0.2"
}
}