-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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
{
"name": "hydux-transitions",
"version": "0.3.1",
"description": "A transition library followed The Elm Architecture, for Hydux.",
"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\" \"lib/test/**/*.js\"",
"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",
"bench": "NODE_ENV=production node ./lib/benchmark/index.js > ./src/benchmark/bench.txt"
},
"pre-commit": [],
"repository": {
"type": "git",
"url": "git+https://github.com/hydux/hydux-transitions.git"
},
"keywords": [
"immutable",
"hydux",
"react"
],
"author": "Zack Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/hydux/hydux-transitions/issues"
},
"homepage": "https://github.com/hydux/hydux-transitions#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.0.1",
"monolite": "^0.4.5",
"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",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typedoc": "^0.9.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"tslib": "^1.8.1"
},
"optionalDependencies": {
"hydux": "^0.5.5"
}
}