forked from TannerRogalsky/delayed-do
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "delayed-do",
"version": "1.2.0",
"description": "Replacements for setTimeout and setInterval that aren't updated by the browser.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"clean": "rimraf lib dist",
"test": "mocha --compilers js:babel-core/register spec",
"lint": "eslint src spec",
"check": "npm run lint && npm run test",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/delayed-do.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/delayed-do.min.js --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/uken/delayed-do.git"
},
"keywords": [
"setTimeout",
"setInterval",
"controlled",
"dt",
"deltaTime",
"timed",
"async"
],
"author": "Tanner Rogalsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/uken/delayed-do/issues"
},
"homepage": "https://github.com/uken/delayed-do",
"devDependencies": {
"babel-cli": "^6.1.4",
"babel-core": "^6.1.4",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.4",
"babel-preset-react": "^6.1.4",
"eslint": "^1.9.0",
"eslint-config-uken": "^1.0.3",
"expect": "^1.12.2",
"mocha": "^2.3.3",
"rimraf": "^2.4.3",
"webpack": "^1.12.4"
},
"npmName": "delayed-do",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}