-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
73 lines (73 loc) · 1.62 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
{
"name": "repatch",
"version": "1.3.12",
"description": "Dispatch reducers",
"main": "lib/store",
"browser": "dist/repatch.js",
"typings": "lib/store",
"scripts": {
"build": "npm run build:node && npm run build:umd",
"build:node": "rimraf lib && tsc",
"build:umd": "rimraf dist && rollup -c rollup.config.js && rollup -c rollup.config.prod.js",
"build:w": "tsc -w",
"test": "jest",
"test:w": "jest --watch",
"pub": "npm run build && npm publish"
},
"files": [
"lib",
"dist",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/jaystack/repatch.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jaystack/repatch/issues"
},
"keywords": [
"dispatch",
"redux",
"reducer",
"state",
"predictable",
"functional",
"immutable",
"flux"
],
"authors": [
"Péter Hauszknecht <[email protected]> (https://github.com/jayhasyee)"
],
"jest": {
"globals": {
"ts-test": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.spec.(ts|js)"
],
"testEnvironment": "node"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "20.0.3",
"@types/node": "^7.0.5",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"rollup": "^0.48.2",
"rollup-plugin-typescript2": "^0.5.2",
"rollup-plugin-uglify": "^2.0.1",
"ts-jest": "^20.0.10",
"typescript": "^2.2.0"
}
}