-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.8 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "vrtest-dev",
"version": "0.2.0",
"private": true,
"keywords": [],
"description": "wip",
"main": "./index.js",
"bin": {
"vrtest": "./bin/vrtest"
},
"scripts": {
"build": "yarn run clean && yarn run build:babel && yarn run build:copy-files",
"build:babel": "babel ./src --ignore *.spec.js --out-dir ./build",
"build:copy-files": "babel-node ./scripts/copy-files.js",
"build:publish": "npm run build && cd build && npm publish && cd ..",
"check": "yarn run lint && yarn run flow && yarn run test",
"clean": "rimraf build && rimraf tmp",
"lint": "eslint src test",
"flow": "flow --show-all-errors",
"test": "cross-env NODE_ENV=test mocha",
"test:coverage": "cross-env NODE_ENV=test nyc mocha && nyc report -r lcovonly",
"test:watch": "cross-env NODE_ENV=test mocha -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathanmarks/vrtest.git"
},
"author": "Nathan Marks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathanmarks/vrtest/issues"
},
"homepage": "https://github.com/nathanmarks/vrtest#readme",
"dependencies": {
"any-promise": "^1.3.0",
"bluebird": "^3.4.7",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"ejs": "^2.5.5",
"express": "^4.14.0",
"fs-promise": "^1.0.0",
"image-diff": "^1.6.3",
"lodash": "^4.17.2",
"log-symbols": "^1.0.2",
"png-crop": "0.0.1",
"selenium-webdriver": "3.3.0"
},
"devDependencies": {
"app-module-path": "^2.1.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-async-to-bluebird": "^1.0.1",
"babel-plugin-transform-promise-to-bluebird": "^1.1.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"cross-env": "^3.1.3",
"eslint": "^3.12.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"flow-bin": "^0.37.0",
"mocha": "^3.2.0",
"ngrok": "^2.2.6",
"nyc": "^10.1.2",
"proxyquire": "^1.7.11",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"webfontloader": "^1.6.27",
"webpack": "2.2.0",
"webpack-dev-server": "2.2.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js"
],
"sourceMap": false,
"instrument": false
}
}