-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 901 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": "timeframer",
"version": "0.0.1",
"description": "Background setTimeout and setInterval via Webworkers in an iframe.",
"main": "src/timeframer.js",
"scripts": {
"build": "browserify -s timeframer -t uglifyify -o dist/timeframer.js src/timeframer-wrapper.js",
"test": "echo \"Warning: no test specified\"",
"www": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kribblo/timeframer.git"
},
"keywords": [
"setTimeout",
"setInterval",
"WebWorker",
"IE",
"Edge"
],
"author": "Kristoffer Lundén <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kribblo/timeframer/issues"
},
"homepage": "https://github.com/kribblo/timeframer#readme",
"devDependencies": {
"browserify": "^14.1.0",
"uglifyify": "^3.0.4"
}
}