forked from colemanator/arcturus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "arcturus",
"version": "0.0.4",
"description": "Manages state in worker threads through simple actions, reducers and selectors",
"main": "dist/lib/index.js",
"module": "dist/es/index.js",
"jsnext:main": "dist/es/index.js",
"files": [
"dist",
"src"
],
"keywords": [
"state",
"webworker",
"parallel",
"multithreaded"
],
"author": {
"name": "Peter Coleman"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/colemanator/arcturus"
},
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir dist/lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir dist/es",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -i src/index.js -o dist/arcturus.umd.js",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -i src/index.js -o dist/arcturus.umd.min.js",
"build": "yarn build:commonjs && yarn build:es && yarn build:umd && yarn build:umd:min",
"precommit": "yarn lint:staged",
"lint:staged": "lint-staged",
"lint:prettier": "prettier-eslint --write \"src/**/*.js\""
},
"lint-staged": {
"*.js": [
"prettier-eslint --write --eslintPath=node_modules/eslint --prettierPath=node_modules/prettier",
"git add",
"eslint"
]
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^5.1.0",
"eslint": "^4.10.0",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"prettier-eslint-cli": "^4.4.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"semistandard": "^11.0.0"
}
}