-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "dynamica",
"version": "1.1.2",
"description": "Goddess of animations",
"keywords": [
"animation",
"motion",
"animation queue",
"animation delay",
"parallel animations"
],
"license": "MIT",
"homepage": "https://github.com/broadsw0rd/dynamica",
"repository": {
"type": "git",
"url": "https://github.com/broadsw0rd/dynamica"
},
"bugs": {
"url": "https://github.com/broadsw0rd/dynamica/issues",
"email": "[email protected]"
},
"author": {
"name": "Vladimir Bykov",
"email": "[email protected]",
"url": "https://github.com/broadsw0rd"
},
"files": [
"dist"
],
"main": "dist/dynamica.umd.js",
"module": "dist/dynamica.js",
"dependencies": {
"performance-now": "2.1.0"
},
"devDependencies": {
"coveralls": "3.0.4",
"nyc": "14.1.1",
"rollup": "1.16.1",
"rollup-plugin-buble": "0.19.6",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-node-resolve": "5.0.3",
"rollup-plugin-replace": "2.2.0",
"sinon": "7.3.2",
"snazzy": "8.0.0",
"standard": "12.0.1",
"tap-diff": "0.1.1",
"tape": "4.10.2",
"uglify-js": "3.6.0"
},
"scripts": {
"check": "standard src/*.js test/*.js | snazzy",
"test": "nyc --cache --reporter=html --reporter=lcov --reporter=text tape test/dynamica.test.js",
"build": "rollup -c",
"min": "uglifyjs dist/dynamica.umd.js -c -m > dist/dynamica.min.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}