-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.58 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
{
"name": "@reactioncommerce/data-factory",
"version": "0.0.0-development",
"description": "Factory util that creates mock data fixtures based on simpl-schema definitions",
"main": "./dist/main.js",
"engines": {
"node": ">=8.11.0"
},
"scripts": {
"build": "npx rimraf dist && npx babel src --out-dir dist --ignore main.test.js",
"docs": "npx jsdoc2md --template docs/README.hbs src/*.js > docs/README.md",
"lint": "npx eslint src",
"test": "npx jest src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactioncommerce/data-factory.git"
},
"author": "Reaction Commerce <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reactioncommerce/data-factory/issues"
},
"homepage": "https://github.com/reactioncommerce/data-factory#readme",
"dependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"faker": "^4.1.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"request": "^2.88.2",
"simpl-schema": "^1.5.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.14.8",
"@reactioncommerce/eslint-config": "^2.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^25.0.0",
"eslint": "^6.2.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "^25.0.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.0",
"rimraf": "^2.7.1",
"semantic-release": "^17.2.3"
},
"babel": {
"presets": [
"@babel/env"
],
"sourceMaps": true
},
"eslintConfig": {
"extends": "@reactioncommerce",
"rules": {
"node/no-unsupported-features/es-syntax": [
"error",
{
"ignores": [
"modules"
]
}
]
}
},
"publishConfig": {
"access": "public"
}
}