-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.54 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "rest-tool",
"description": "A tool to document emulate and test RESTful APIs.",
"version": "1.0.3",
"tags": [
"rest",
"restful",
"api",
"docs",
"util",
"tool",
"utility"
],
"author": {
"name": "Tamás Benke",
"email": "tombenke@gmail.com"
},
"repository": {
"type": "git",
"url": "http://github.com/tombenke/rest-tool.git"
},
"bin": {
"rest-tool": "./dist/rest-tool.js",
"rest-tool-manual-test": "./test/manual_test.sh"
},
"main": "index",
"dependencies": {
"datafile": "3.2.0",
"dgen": "1.0.0",
"lodash": "^4.17.11",
"npac": "^1.2.0",
"rest-tool-common": "^2.2.0",
"yargs": "10.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "6.2.5",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "6.20.2",
"babel-polyfill": "6.16.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"eslint": "^3.13.1",
"expect": "^1.6.0",
"gulp": "^4.0.0",
"gulp-debug": "^3.1.0",
"gulp-markdown": "^1.2.0",
"gulp-mustache": "^3.0.0",
"gulp-rename": "^1.2.2",
"gulp-through": "^0.4.0",
"istanbul": "1.0.0-alpha.2",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"pre-push": "^0.1.1",
"rimraf": "^2.6.2",
"should": "3.1.2",
"vinyl-buffer": "^1.0.0"
},
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"lint": "eslint src/**.js",
"test": "cross-env NODE_ENV=test mocha --recursive --compilers js:babel-register 'src/**/*.spec.js'",
"test:watch": "npm test -- --watch",
"coverage": "NODE_ENV=test istanbul cover _mocha -- recursive --compilers js:babel-register --timeout 15000 'src/**/*.spec.js'",
"coveralls": "NODE_ENV=test istanbul cover _mocha --report lcovonly -- recursive --compilers js:babel-register --timeout 15000 'src/**/*.spec.js' -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"docs": "rm -fr ./docs/api/* && jsdoc -c ./.jsdoc.json",
"docgen": "node_modules/.bin/gulp docgen",
"prepublishOnly": "npm run lint && npm run test && npm run build && npm run docs",
"all": "npm run lint && npm run coverage && npm run build && npm run docs"
},
"pre-push": [
"lint",
"test"
]
}