-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
108 lines (108 loc) · 3.21 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "saloon",
"version": "1.4.10",
"description": "An E2E Test Seeder for Enterprise Web Applications",
"main": "dist/saloon.js",
"module": "dist/module/main.js",
"scripts": {
"build": "npm-run-all --parallel build:prod build:module",
"build:dev": "webpack --mode development --watch",
"build:prod": "webpack --mode production",
"build:module": "babel -d dist/module src --ignore /'__tests__'/",
"test": "cross-env NODE_ENV=test nyc ava",
"test:watch": "cross-env NODE_ENV=test ava --watch",
"test:debug": "cross-env NODE_ENV=test inspect ./node_modules/ava/profile.js",
"posttest": "npm run lint",
"lint": "eslint src examples server --ignore-pattern __tests__",
"prepublish": "yarn run snyk-protect; npm run build",
"publish:major": "npm version major && npm publish && git push && git push --tags",
"publish:minor": "npm version minor && npm publish && git push && git push --tags",
"publish:patch": "npm version patch && npm publish && git push && git push --tags ",
"server": "babel-node --presets env server/index.js",
"example": "babel-node --presets env examples/standard/index.js",
"example:graphql": "babel-node --presets env examples/graphql/index.js",
"docs": "./node_modules/.bin/jsdoc src -r --destination docs",
"snyk-protect": "snyk protect"
},
"repository": {
"type": "git",
"url": "https://github.com/intuit/saloon.git"
},
"author": "James Wilson <[email protected]>",
"license": "apache-2.0",
"dependencies": {
"axios": "0.18.1",
"babel-runtime": "^6.26.0",
"chance": "1.0.13",
"lodash.defaultsdeep": "^4.6.1",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"snyk": "^1.316.1"
},
"devDependencies": {
"acorn": "^5.7.4",
"apollo-server-core": "^2.14.2",
"apollo-server-restify": "^1.3.6",
"ava": "0.25.0",
"babel-cli": "^6.24.1",
"babel-eslint": "8.2.2",
"babel-loader": "7.1.4",
"babel-plugin-istanbul": "4.1.5",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"babel-register": "^6.26.0",
"cross-env": "5.1.3",
"csv-parse": "^4.4.6",
"eslint": "4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"jsdoc": "3.5.5",
"just-extend": "^4.0.0",
"kind-of": "^6.0.3",
"mem": "^4.0.0",
"npm-run-all": "^4.0.2",
"nyc": "10.3.2",
"randomatic": "^3.0.0",
"restify": "^4.x",
"serialize-javascript": "^2.1.1",
"set-value": "^2.0.1",
"sinon": "4.4.2",
"tunnel-agent": "^0.6.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-node-externals": "^1.5.4"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"verbose": true,
"concurrency": 8
},
"nyc": {
"require": [
"babel-register"
],
"lines": 75,
"check-coverage": true,
"all": true,
"extension": [
".js"
],
"include": [
"src/**/*.js"
],
"reporter": [
"text",
"html",
"cobertura"
],
"sourceMap": false,
"instrument": false
},
"snyk": true
}