-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "aquaman-redux",
"version": "1.3.3",
"description": "Redux middlewear for composable, declarative control flow",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build-module": "webpack --config webpack.config.js",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run clean && npm run build:types && npm run build-module",
"test": "jest",
"prepare": "npm run build",
"ts": "tsc --noEmit"
},
"jest": {
"preset": "ts-jest/presets/js-with-babel"
},
"repository": {
"type": "git",
"url": "https://github.com/evernote/Aquaman.git"
},
"keywords": [
"redux"
],
"author": "Evernote",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-async-generator-functions": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^27.4.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"emojis-list": "^3.0.0",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"redux": "^4.0.5",
"rxjs": "^6.6.6",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"tslib": "^2.1.0",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0"
},
"peerDependencies": {
"redux": ">=4.0.0",
"rxjs": ">=6.0.0"
}
}