-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "turbine-tasksmanager",
"version": "1.0.0",
"description": "Module for turbine framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/gulp",
"buildWatch": "./node_modules/.bin/gulp watch",
"mochaTest": "./node_modules/.bin/mocha -c -b test/**/*test.js",
"mochaTestWatch": "./node_modules/.bin/mocha -c -b -w test/**/*test.js",
"test": "npm run mochaTest",
"testWatch": "npm run mochaTestWatch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctoesca/turbine-tasksmanager"
},
"keywords": [
"turbine",
"tasksmanager"
],
"author": "Christophe Toesca <christophe.toesca@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ctoesca/turbine-tasksmanager/issues"
},
"homepage": "https://github.com/ctoesca/turbine-tasksmanager#readme",
"devDependencies": {
"@types/bluebird": "^3.5.1",
"@types/bunyan": "^1.8.4",
"@types/express": "^4.11.0",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-cli": "^1.4.0",
"gulp-tslint": "^7.0.1",
"gulp-typedoc": "^2.1.0",
"gulp-typescript": "^3.1.3",
"gulp-minify": "^2.1.0",
"merge2": "^1.0.2",
"mocha": "^2.5.3",
"run-sequence": "^1.2.2",
"sinon": "^1.17.6",
"tslint": "^4.0.2",
"typescript": "^2.1.4",
"typedoc": "^0.3.12"
},
"dependencies": {
"bluebird": "^3.5.1",
"merge2": "^1.2.2",
"turbine": "git+https://github.com/ctoesca/turbine.git",
"typescript": "^2.8.3"
}
}