-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "faux-pass",
"version": "0.0.0",
"description": "Fills out forms with fake data",
"engine-strict": true,
"engines": {
"node": ">= 6.x",
"npm": ">= 3.x"
},
"main": "faux-pass.js",
"scripts": {
"build": "npm run clean && npm run bundle",
"bundle": "webpack --config webpack.config.base.babel.js",
"clean": "rimraf dist",
"test:unit": "mocha --compilers js:babel-register \"**/*.spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/STUPIDSHITNOONEINHAWAIINEEDSHACKATHON/faux-pass.git"
},
"author": "Tony Gaskell <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/STUPIDSHITNOONEINHAWAIINEEDSHACKATHON/faux-pass/issues"
},
"homepage": "https://github.com/STUPIDSHITNOONEINHAWAIINEEDSHACKATHON/faux-pass#readme",
"devDependencies": {
"babel-core": "6.21.0",
"babel-eslint": "7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "6.18.0",
"chai": "3.5.0",
"eslint": "3.13.0",
"eslint-config-airbnb-base": "11.0.0",
"eslint-import-resolver-webpack": "0.8.0",
"eslint-plugin-import": "2.2.0",
"json-loader": "0.5.4",
"mocha": "3.2.0",
"rimraf": "^2.5.4",
"webpack": "2.1.0-beta.25"
},
"dependencies": {
"webdriverio": "4.6.1"
}
}