-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "spiritual-timer",
"version": "1.0.2",
"description": "An extension of Javascript timers which helps you in dealing with situation when your browser in not active and timers are slowed down",
"main": "lib/SpiritualTimer.js",
"scripts": {
"compile": "./node_modules/.bin/babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "./node_modules/.bin/eslint src && ./node_modules/.bin/mocha --compilers js:babel/register --reporter spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inderps/spiritual-timer.git"
},
"keywords": [
"settimeout",
"setinterval"
],
"author": "Inderpal Singh <[email protected]> ",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/inderps/spiritual-timer/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/inderps/spiritual-timer/issues"
},
"homepage": "https://github.com/inderps/spiritual-timer#readme",
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"chai": "^3.3.0",
"eslint": "^1.6.0",
"mocha": "^2.3.3",
"mockdate": "^1.0.3"
}
}