-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
30 lines (30 loc) · 981 Bytes
/
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
{
"name": "motion-path-js",
"version": "0.0.0",
"description": "Web Animations polyfill extension for motion path animation",
"main": "index.js",
"scripts": {
"test": "npm run lint && karma start --single-run && npm run build",
"watchTests": "karma start --reporters nyan",
"build": "cat tools/pre.js tools/internal-scope.js $(cat src/fileOrder.txt) tools/post.js | uglifyjs > motion-path-polyfill.min.js",
"lint": "semistandard src/*.js test/*.js",
"format": "semistandard --fix src/*.js test/*.js"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.0.2",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-nyan-reporter": "^0.2.5",
"mocha": "^3.4.2",
"semistandard": "~11.0.0",
"uglify-js": "^3.0.15"
},
"repository": {
"type": "git",
"url": "https://github.com/Motion-Path-Polyfill/motion-path-js.git"
}
}