-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
{
"name": "@sigmadigital/duxedo",
"version": "3.0.0",
"description": "simple utility for reducing redux boilerplate and helping you scale redux",
"main": "index.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sigmadigitalza/duxedo.git"
},
"scripts": {
"test": "jest --coverage --notify",
"test:watch": "jest --watchAll --coverage --notify",
"build": "rollup ./src/index.js --file ./index.js --format umd --name \"duxedo\"",
"version": "auto-changelog -p && git add CHANGELOG.md",
"semver:patch": "npm version patch",
"semver:minor": "npm version minor",
"semver:major": "npm version major",
"distribute": "npm publish --access public",
"distribute:patch": "npm run semver:patch && npm run distribute",
"distribute:minor": "npm run semver:minor && npm run distribute",
"distribute:major": "npm run semver:major && npm run distribute",
"serve:coverage": "http-server ./coverage/lcov-report -p 7357"
},
"keywords": [
"sigmadigital",
"react",
"redux"
],
"author": "Paul van Zyl <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@sigmadigital/eslint-config-kitchensink": "^0.1.3",
"auto-changelog": "^1.11.0",
"babel-jest": "^24.1.0",
"eslint": "^5.13.0",
"flow-bin": "^0.92.0",
"http-server": "^0.11.1",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"rollup": "^1.6.0"
},
"peerDependencies": {
"redux": ">= 4.0.1"
}
}