-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "@reactioncommerce/job-queue",
"version": "0.0.0-development",
"description": "Reaction job queue collection",
"main": "./dist/node/index.js",
"browser": "./dist/browser/index.js",
"scripts": {
"prebuild": "rimraf build && mkdir build",
"build:copy": "cp package.json build && cp LICENSE build && cp README.md build",
"build:src": "cross-env NODE_ENV=production babel ./src --ignore *.test.js --out-dir ./build/dist",
"build": "npm run build:copy && npm run build:src",
"watch": "watch 'npm run build' src",
"lint": "eslint ./src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactioncommerce/reaction-job-queue.git"
},
"author": "Reaction Commerce <hello@reactioncommerce.com>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/reactioncommerce/reaction-job-queue/issues"
},
"homepage": "https://github.com/reactioncommerce/reaction-job-queue#readme",
"dependencies": {
"later": "^1.2.0"
},
"devDependencies": {
"@reactioncommerce/eslint-config": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.3",
"eslint": "^4.17.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"fibers": "^2.0.0",
"jest": "^22.3.0",
"jest-cli": "^22.3.0",
"semantic-release": "^12.4.1",
"watch": "^1.0.2"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"transform-export-extensions"
],
"sourceMaps": true
},
"eslintConfig": {
"extends": "@reactioncommerce"
},
"publishConfig": {
"access": "public"
},
"jest": {
"roots": ["./src"]
}
}