-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"name": "sprite-animator",
"version": "1.11.5",
"description": "Abstract animation generators.",
"main": "lib/index.js",
"esnext": {
"./lib/index.js": "./src/index.js"
},
"directories": {
"example": "example"
},
"scripts": {
"test": "nyc ava --serial && rm -rf ./coverage && mkdir ./coverage && nyc report --reporter=text-lcov > ./coverage/lcov.info",
"lint": "eslint 'src/**/*.js' --fix",
"start": "webpack-dev-server --watch-poll",
"build-node": "babel src -d lib --watch",
"compile": "babel src -d lib --compile --watch",
"build": "rm -rf dist/* && ./script/build.js",
"prepublishOnly": "babel src -d lib && npm run build"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"bezier-easing": "^2.0.3",
"sprite-timeline": "^1.10.2"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.3.2",
"colors": "^1.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-sprite": "^1.0.4",
"eslint-plugin-html": "^4.0.5",
"nyc": "^11.1.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}