-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1011 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
33
34
35
36
37
{
"name": "@webos/timers",
"version": "1.0.8",
"description": "Abstraction layer on setTimeout and setInterval, implementation of setImmediate.",
"main": "./dist/timers.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel --plugins transform-object-rest-spread src --presets babel-preset-es2015 --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webosorg/Timers.git"
},
"keywords": [
"sleep",
"nextTick",
"every",
"setImmediate",
"loopDelayBetween",
"setTimeout",
"setInterval",
"promise"
],
"author": "SurenAt",
"license": "MIT",
"bugs": {
"url": "https://github.com/webosorg/Timers/issues"
},
"homepage": "https://github.com/webosorg/Timers#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
},
"dependencies": {}
}