-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 KB
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
{
"name": "tasks.js",
"version": "0.1.2",
"description": "A declarative, test-driven framework for organizing what you're doing - written in Node.js",
"main": "lib/index.js",
"author": "Connor Grady <conair360@gmail.com> (http://connorgrady.com/)",
"homepage": "https://github.com/itsjustcon/tasks.js",
"repository": {
"type": "git",
"url": "https://github.com/itsjustcon/tasks.js.git"
},
"bugs": {
"url": "https://github.com/itsjustcon/tasks.js/issues"
},
"license": "MIT",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"@itsjustcon/utils": "^1.0.0",
"bluebird": "^3.0.0",
"debug": "^2.0.0",
"listr": "^0.12.0",
"lodash": "^4.0.0",
"rxjs": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"chai": "^4.0.0",
"faker": "^4.1.0",
"flow-bin": "^0.47.0",
"mocha": "^3.2.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"source-map-support": "^0.4.14"
},
"scripts": {
"build": "rm -rf lib; mkdir lib && babel src --out-dir lib && cp package.json lib/",
"prepare": "npm run build",
"test": "mocha"
}
}