-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.37 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": "vrestapi",
"version": "0.0.0",
"description": "Unofficial vREST api for command line",
"bin": "index.js",
"scripts": {
"start": "./node_modules/.bin/babel-node src",
"build": "rm -rf dist && mkdir dist && ./node_modules/.bin/json -f package.json -e \"delete this.devDependencies;delete this.scripts;delete this.nyc;delete this.babel\" > dist/package.json && ./node_modules/.bin/babel src -d dist",
"pr": "rm -rf $HOME/workspace/vrest-cli/test && cp -r test $HOME/workspace/vrest-cli/ && rm -rf $HOME/workspace/vrest-cli/src && cp -r src $HOME/workspace/vrest-cli/ && cd $HOME/workspace/vrest-cli && npm run build",
"prodtest": "TEST_DIR=dist npm run test",
"test": "./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha -b",
"all":"npm run lint && npm test && npm run build && npm run prodtest && npm run pr",
"lint": "./node_modules/.bin/eslint src"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/codeofnode/vrestapi.git"
},
"keywords": [
"vrest",
"api",
"rest",
"testing",
"cli"
],
"author": "Ramesh Kumar <codeofnode@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeofnode/vrestapi/issues"
},
"homepage": "https://github.com/codeofnode/vrestapi#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"istanbul": "^0.4.5",
"json": "^9.0.6",
"mocha": "^3.4.2",
"nyc": "^10.3.2"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"babel": {
"plugins": [
"transform-async-to-generator",
"transform-runtime"
],
"presets": [
"es2015",
"stage-2"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"dependencies": {
"babel-runtime": "^6.23.0"
}
}