-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "an-illusion",
"author": "Xavier Bruhiere <[email protected]>",
"version": "0.1.1",
"description": "Intuition API emulation and documentation.",
"repository": "https://github.com/intuition-io/illusion",
"keywords": [
"api",
"fake",
"nodejs",
"tool"
],
"license": "MIT",
"bin": {
"illusion": "./bin/illusion.js"
},
"dependencies": {
"bunyan": "^1.0.1",
"chalk": "^0.5.1",
"cli-table": "^0.3.0",
"commander": "~2.3.0",
"faker": "^1.1.0",
"gulp-util": "^3.0.1",
"interfake": "~1.9.2",
"moment": "^2.8.3",
"node-uuid": "^1.4.1",
"semver": "^3.0.1",
"update-notifier": "^0.2.1"
},
"scripts": {
"start": "node bin/illusion.js fakeit",
"lint": "nodelint bin/illusion.js src/*.js",
"coverage": "istanbul cover _mocha -- -R spec test/cli.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "mocha --watch"
},
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"coveralls": "^2.11.1",
"istanbul": "^0.3.2",
"jshint": "^2.5.5",
"mocha": "^1.21.4",
"mocha-lcov-reporter": "0.0.1",
"nodelint": "^0.6.2",
"should": "^4.0.4"
}
}