-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.12 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "redux-nakshatra",
"version": "0.0.13",
"description": "Redux addon library generates Sagas, Types, Actions, Reducers",
"module": "es/redux-nakshatra.js",
"main": "dist/redux-nakshatra.js",
"typings": "./index.d.ts",
"files": ["dist", "lib", "es", "src", "index.d.ts"],
"scripts": {
"clean": "rimraf lib dist es coverage",
"format": "prettier --write '{src,test}/**/*.js'",
"format:check": "prettier --list-different '{src,test}/**/*.js'",
"lint": "eslint src test build",
"pretest": "npm run build:commonjs",
"test": "cross-env BABEL_ENV=commonjs jest",
"test:watch": "npm test -- --watch",
"test:cov": "npm test -- --coverage",
"build:commonjs": "cross-env NODE_ENV=cjs rollup -c -o lib/redux-nakshatra.js",
"build:es": "cross-env BABEL_ENV=es NODE_ENV=es rollup -c -o es/redux-nakshatra.js",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -o dist/redux-nakshatra.js",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -o dist/redux-nakshatra.min.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"prepare": "npm-install-peers && npm run clean && npm run format:check && npm run lint && npm run build && npm test",
"examples:lint": "eslint examples",
"examples:test": "cross-env CI=true babel-node examples/testAll.js",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g agenthunt/redux-nakshatra",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish":
"npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push https://github.com/agenthunt/redux-nakshatra.git gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/agenthunt/redux-nakshatra.git"
},
"keywords": [
"redux-nakshatra",
"redux",
"sagas",
"star",
"reducer",
"state",
"predictable",
"functional",
"immutable",
"hot",
"live",
"replay",
"flux",
"elm"
],
"authors": ["Shailesh Kumar <[email protected]> (https://github.com/agenthunt)"],
"license": "MIT",
"bugs": {
"url": "https://github.com/agenthunt/redux-nakshatra/issues"
},
"homepage": "http://redux-nakshatra.js.org",
"dependencies": {
"gitbook-plugin-anchorjs": "2.0.0",
"gitbook-plugin-edit-link": "2.0.2",
"gitbook-plugin-github": "2.0.0",
"gitbook-plugin-prism": "2.3.0",
"loose-envify": "1.3.1"
},
"peerDependencies": {
"axios": ">= 0.18.0",
"redux-saga": ">= 0.16.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.4.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-idx": "2.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.0",
"eslint": "4.18.1",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.4.0",
"gitbook-cli": "^2.3.2",
"glob": "^7.1.1",
"idx": "2.2.0",
"jest": "^22.4.0",
"prettier": "1.10.2",
"rimraf": "^2.6.2",
"rollup": "0.56.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rxjs": "^5.5.0",
"typescript": "^2.6.2",
"typings-tester": "^0.3.0"
},
"npmName": "redux-nakshatra",
"npmFileMap": [
{
"basePath": "/dist/",
"files": ["*.js"]
}
],
"browserify": {
"transform": ["loose-envify"]
},
"jest": {
"testRegex": "(/test/.*\\.spec.js)$",
"transform": {
"^.+\\.js?$": "babel-jest"
}
}
}