This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 1.84 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
{
"name": "@reactioncommerce/random",
"version": "0.0.0-development",
"description": "A drop-in replacement for the 'random' Meteor package",
"browser": "./dist/browser.js",
"main": "./dist/server.js",
"scripts": {
"build": "rimraf ./dist && babel src --out-dir ./dist",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"test": "jest",
"test:watch": "jest --watch",
"watch": "watch 'npm run build' src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactioncommerce/random.git"
},
"author": "Reaction Commerce <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactioncommerce/random/issues"
},
"homepage": "https://github.com/reactioncommerce/random#readme",
"devDependencies": {
"@reactioncommerce/eslint-config": "^1.7.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"rimraf": "^2.6.2",
"semantic-release": "^17.2.3",
"watch": "^1.0.2"
},
"babel": {
"presets": [
"env",
"stage-2"
],
"plugins": [
[
"add-module-exports",
{
"addDefaultProperty": true
}
]
],
"sourceMaps": true
},
"jest": {
"testURL": "http://localhost"
},
"eslintConfig": {
"extends": "@reactioncommerce"
},
"prettier": {
"arrowParens": "always"
},
"release": {
"branches": [
"trunk"
]
},
"publishConfig": {
"access": "public"
}
}