-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 894 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
31
32
{
"name": "transient",
"version": "2.0.1",
"description": "An animation loop implementation",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"prepare": "npm t",
"postpublish": "git push && git push --tags",
"test": "standard && mocha",
"examples": "browserify examples/little-scene/main.js > examples/little-scene/build.js && open examples/little-scene/index.html",
"examples-dev": "watchify examples/little-scene/main.js -o examples/little-scene/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wesleytodd/transient.git"
},
"author": "Wes Todd",
"license": "ICS",
"dependencies": {
"@streammedev/perfnow": "^2.0.0",
"browser-next-tick": "^1.0.0"
},
"devDependencies": {
"browserify": "^14.4.0",
"mocha": "^4.0.1",
"standard": "^10.0.3",
"watchify": "^3.9.0"
}
}