-
Notifications
You must be signed in to change notification settings - Fork 408
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "web-animations-js",
"description": "JavaScript implementation of the Web Animations API",
"repository": {
"type": "git",
"url": "https://github.com/web-animations/web-animations-js.git"
},
"version": "2.3.2",
"keywords": [
"animations",
"polyfill"
],
"homepage": "https://github.com/web-animations",
"license": "Apache-2.0",
"main": "web-animations.min.js",
"files": [
"src/*",
"*.min.js",
"*.min.js.map"
],
"devDependencies": {
"minimatch": "^3.0.4",
"mocha": "1.21.4",
"chai": "^1.9.1",
"grunt": "~0.4.5",
"grunt-contrib-uglify": "^0.4.0",
"grunt-gjslint": "^0.2.1",
"closure-linter-wrapper": "^1.0.0",
"grunt-karma": "3.x",
"karma": "4.x",
"karma-mocha": "^0.1.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "~0.1.4",
"karma-firefox-launcher": "~0.1.3",
"karma-ie-launcher": "~0.1.5",
"karma-safari-launcher": "~0.1.1",
"karma-sauce-launcher": "~0.2.3",
"grunt-checkrepo": "~0.1.0",
"grunt-saucelabs": "~4.0.2",
"grunt-git-status": "~1.0.0",
"grunt-template": "~0.2.3",
"source-map": "~0.1.40"
},
"scripts": {
"test": "grunt web-animations web-animations-next test gjslint git-status checkrepo"
}
}