-
Notifications
You must be signed in to change notification settings - Fork 414
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "dynamics.js",
"title": "Dynamics.js",
"description": "Javascript library to create physics-related animations",
"version": "1.1.5",
"homepage": "http://dynamicsjs.com",
"author": "Michael Villar <[email protected]> (http://twitter.com/michaelvillar)",
"repository": {
"type": "git",
"url": "https://github.com/michaelvillar/dynamics.js"
},
"devDependencies": {
"coffee-script": "1.7.1",
"uglify-js": "2.4.14",
"jsdom": "3.x.x",
"mocha-jsdom": "0.4.0",
"chai": "3.0.0",
"mocha": "2.2.5"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register",
"build": "coffee -c -o ./lib/ ./src/dynamics.coffee && ./node_modules/uglify-js/bin/uglifyjs ./lib/dynamics.js -m -c -o ./lib/dynamics.min.js",
"build:watch": "coffee -w -c -o ./lib/ ./src/dynamics.coffee",
"prepublish": "npm run build"
},
"bugs": {
"url": "https://github.com/michaelvillar/dynamics.js/issues"
},
"main": "lib/dynamics.js",
"directories": {
"test": "test"
},
"keywords": [
"animation",
"javascript",
"requestAnimationFrame",
"spring",
"physic"
],
"license": "MIT"
}