-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.08 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
{
"name": "require-worker",
"version": "1.0.0",
"description": "require with a fork and a promise",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"example": "node ./examples/example1.js",
"test": "mocha -t 10000 --recursive tests/**/*.js --check-leaks --use_strict --exit",
"test-watch": "mocha -t 10000 --recursive tests/**/*.js --check-leaks --use_strict --watch --full-trace --trace-deprecation --exit",
"test-watch-min": "mocha -t 10000 --recursive tests/**/*.js --check-leaks --use_strict --watch --full-trace --trace-deprecation --reporter=progress --exit",
"test-watch-inspect": "mocha -t 10000 --recursive tests/**/*.js --use_strict --watch --full-trace --trace-deprecation --inspect --exit",
"benchmark": "node --inspect ./benchmarks/run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Jashepp/require-worker"
},
"author": "unchosen.aus@gmail.com",
"license": "MIT",
"dependencies": {
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.5"
}
}