-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.97 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
{
"name": "hydux-react",
"version": "0.3.4",
"description": "React enhancer for hydux, hydux is an elm-like state manager inspired by Hyperapp, Elmish, Elm, Redux, etc. Working with any vdom library!",
"main": "./lib/index.js",
"typings": "./lib/index",
"types": "./lib/index",
"scripts": {
"build": "del lib && tsc -d -t es5",
"build:dist": "webpack -p --progress --profile",
"test": "mocha --require espower-typescript/guess \"src/test/**/*.ts\"",
"test:watch": "npm run test -- -w --watch-extensions ts,tsx",
"doc": "typedoc --theme minimal --out ./docs --exclude ./test ./src && touch ./docs/.nojekyll",
"preversion": "npm run build && npm run build:dist && git add -A"
},
"pre-commit": [],
"files": [
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hydux/hydux-react.git"
},
"keywords": [
"elm",
"hyperapp",
"redux",
"flux",
"react",
"picodom"
],
"author": "Zack Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/hydux/hydux-react/issues"
},
"homepage": "https://github.com/hydux/hydux-react#readme",
"devDependencies": {
"@types/lodash": "^4.14.112",
"@types/lru-cache": "^4.1.0",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.56",
"@types/react": "^16.7.2",
"@types/react-dom": "^16.0.9",
"awesome-typescript-loader": "^3.4.1",
"clean-webpack-plugin": "^0.1.17",
"cross-env": "^5.1.1",
"debug": "^3.1.0",
"del-cli": "^1.1.0",
"espower-typescript": "^8.1.2",
"mocha": "^4.0.1",
"power-assert": "^1.4.4",
"pre-commit": "^1.2.2",
"source-map-loader": "^0.2.3",
"timekeeper": "^2.0.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typedoc": "^0.9.0",
"typescript": "^2.9.2",
"webpack": "^3.10.0"
},
"dependencies": {
"lru-cache": "^4.1.1",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"optionalDependencies": {
"hydux": "^0.5.8"
}
}