-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "@immerx/state",
"version": "3.2.2",
"description": "Reactive & fractal state management with Immer",
"main": "cjs/index.js",
"module": "esm/index.js",
"scripts": {
"dev": "npm run build:esm -- -w",
"dev:esm": "npm run build:esm -- -w",
"dev:cjs": "npm run build:cjs -- -w",
"pretest": "npm run build:cjs",
"test": "ava --verbose --color --serial",
"build:esm": "BABEL_ENV=esm babel src --out-dir esm",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir cjs",
"prebuild": "npm run clean",
"build": "npm run build:cjs && npm run build:esm",
"prepublish": "npm run clean && npm run build",
"clean": "rimraf cjs esm"
},
"ava": {
"files": [
"test/*.js",
"!test/mocks/**"
],
"babel": true
},
"homepage": "https://github.com/monojack/immerx-state",
"bugs": "https://github.com/monojack/immerx-state/issues",
"files": [
"esm",
"cjs"
],
"publishConfig": {
"access": "public"
},
"author": "Ionut Achim <[email protected]>",
"license": "ISC",
"keywords": [
"immer",
"state",
"reactive",
"fractal",
"observable"
],
"sideEffects": false,
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"ava": "^3.8.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"immer": "^6.0.9",
"prettier": "^2.0.5",
"read-pkg": "^5.2.0",
"rimraf": "^3.0.2",
"rxjs": "^6.5.5",
"write-pkg": "^4.0.0"
},
"peerDependencies": {
"immer": ">= 6.0.0"
}
}