-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "weak-daemon",
"version": "1.0.3",
"description": "Object wrapper for unref'ed setInterval",
"author": "Wojciech Fiderek <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"__types_comment": "(!) For testing purposes leave types in lib directory",
"types": "lib/index",
"directories": {
"test": "test"
},
"scripts": {
"start": "npm run rebuild",
"clean": "rm -rf lib && mkdir lib",
"build": "tsc",
"move-type-files": "echo move-type-files CURRENTLY SHOULD NOT BE USED && ERROR && (rm -rf types && mkdir types && cd lib && find . -name '*.d.ts' -exec cp --parents '{}' ./../types ';' && find ./../lib -type f -name '*.d.ts' -delete )",
"rebuild": "npm run clean && npm run build",
"test": "npm run rebuild && jasmine-ts \"test/**/*\"",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/fider/weak-daemon"
},
"bugs": {
"url": "https://github.com/fider/weak-daemon/issues"
},
"keywords": [
"weak",
"daemon"
],
"dependencies": {},
"engines": {
"node": ">=4.8.7"
},
"devDependencies": {
"@types/jasmine": "^2.8.6",
"@types/node": "^9.4.1",
"jasmine-ts": "^0.2.1"
}
}