forked from redux-zero/redux-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.3 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
{
"name": "redux-zero",
"version": "5.0.0",
"description": "",
"main": "dist/redux-zero.js",
"types": "index.d.ts",
"scripts": {
"compile": "tsc --pretty",
"compile:watch": "tsc --pretty --watch",
"lint": "tslint src/**/*.ts src/**/*.tsx",
"test": "jest",
"test:watch": "jest --watch",
"format":
"prettier --write rollup.config.js \"config/**/*.js\" \"src/**/*.ts\" \"src/**/*.tsx\"",
"check":
"npm run compile && npm run format && npm run lint && npm run test",
"clean": "rimraf dist coverage",
"prebuild": "npm run check && npm run clean",
"build:umd": "cross-env NODE_ENV=umd rollup --config",
"build:cjs": "cross-env NODE_ENV=cjs rollup --config",
"build": "npm run build:umd && npm run build:cjs",
"prepublish": "npm run build",
"precommit": "npm run build"
},
"author": "Matheus Lima <[email protected]>",
"files": [
"devtools",
"dist",
"interfaces",
"middleware",
"preact",
"react",
"store",
"svelte",
"utils",
"vue",
"index.d.ts"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/redux-zero/redux-zero"
},
"jest": {
"moduleFileExtensions": ["ts", "tsx", "js"],
"setupFiles": ["<rootDir>/config/testSetup.js"],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/config/preprocessor.js"
},
"testMatch": ["<rootDir>/src/**/*.spec.(ts|tsx)"]
},
"devDependencies": {
"@types/jest": "21.1.10",
"@types/react": "16.0.9",
"cross-env": "5.0.5",
"enzyme": "3.5.0",
"enzyme-adapter-react-16": "1.2.0",
"husky": "0.14.3",
"jest": "21.2.1",
"preact": "8.2.6",
"preact-render-spy": "1.2.1",
"prettier": "1.7.4",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-test-renderer": "16.0.0",
"rimraf": "2.6.2",
"rollup": "0.50.0",
"rollup-plugin-commonjs": "8.2.1",
"rollup-plugin-filesize": "1.4.2",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-typescript2": "0.7.0",
"rollup-plugin-uglify": "2.0.1",
"tslint": "5.7.0",
"typescript": "3.0.1",
"vue": "2.5.9"
},
"keywords": [
"react",
"redux",
"flux",
"state",
"predictable",
"functional",
"immutable",
"elm",
"lightweight",
"light",
"small",
"simple"
]
}