-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (77 loc) · 2.32 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
{
"name": "hydux-mutator",
"version": "0.1.11",
"description": "An statically-typed immutable update helper library, built for hydux.",
"main": "./lib/index.js",
"typings": "./lib/index",
"types": "./lib/index",
"scripts": {
"build": "del lib && tsc -d -t es5 && cp ./index.js.flow ./lib",
"build:dist": "webpack -p --progress --profile",
"test": "npm run test:ts && npm run test:es5",
"test:ts": "mocha --require espower-typescript/guess \"src/test/**/*.ts\" -t 5000",
"test:es5": "npm run build && mocha \"lib/test/**/*.js\" -t 5000",
"cover": "nyc npm test",
"test:watch": "npm run test -- -w --watch-extensions ts,tsx",
"doc": "typedoc --theme minimal --exclude \"**/{test,benchmark}/*.ts\" --excludeNotExported --excludePrivate --out ./docs ./src && touch ./docs/.nojekyll",
"preversion": "npm run test && npm run build && npm run build:dist && git add -A",
"bench": "NODE_ENV=production node ./lib/benchmark/index.js > ./src/benchmark/bench.txt"
},
"pre-commit": [
"test"
],
"files": [
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hydux/hydux-mutator.git"
},
"keywords": [
"immutable",
"hydux",
"react"
],
"author": "Zack Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/hydux/hydux-mutator/issues"
},
"homepage": "https://github.com/hydux/hydux-mutator#readme",
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.56",
"awesome-typescript-loader": "^3.4.1",
"benchmark": "^2.1.4",
"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",
"immutable": "^3.8.2",
"immuter": "^2.0.5",
"microtime": "^2.1.6",
"mocha": "^4.1.0",
"monolite": "^0.4.5",
"nyc": "^11.4.1",
"power-assert": "^1.4.4",
"pre-commit": "^1.2.2",
"seamless-immutable": "^7.1.2",
"source-map-loader": "^0.2.3",
"timm": "^1.4.0",
"ts-node": "^4.1.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typedoc": "^0.9.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"@funkia/list": "^0.1.0",
"parsimmon": "^1.6.4",
"quick-lru": "^1.1.0",
"tslib": "^1.8.1"
},
"optionalDependencies": {}
}