-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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": "zoetrope",
"version": "1.2.6",
"license": "ISC",
"author": "Harry Parton <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/hparton/zoetrope.git"
},
"bugs": "https://github.com/hparton/zoetrope/issues",
"description": "A lightweight animation helper, less than 1kb with no dependencies.",
"main": "./dist/zoetrope.js",
"scripts": {
"build": "babel src --out-dir dist",
"minify": "uglifyjs --compress --output dist/zoetrope.min.js -- dist/zoetrope.js",
"test": "npm run build && mocha -r jsdom-global/register --compilers js:babel-register test/test.js",
"deploy": "npm run build && npm run test && npm run minify",
"prepublishOnly": "npm run deploy",
"lint": "eslint \"src/**/*.js\"",
"precommit": "npm run test && npm run lint"
},
"keywords": [
"simple",
"lightweight",
"animation",
"easing",
"1kb"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2",
"uglify-js": "^3.0.26"
}
}