-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.39 KB
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
{
"name": "justore",
"changelog": false,
"release": true,
"version": "5.0.1",
"description": "We don't need flux , just the store please",
"main": "dist/justore.js",
"module": "dist/justore.esm.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint src/index.js",
"pretest": "npm run build",
"test": "npm run lint && mocha test.js"
},
"files": [
"dist",
"types/*.d.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git@github.com:regou/justore.git"
},
"keywords": [
"flux",
"react",
"flux store",
"Immutable",
"immer",
"store",
"pubsub"
],
"author": "regou",
"license": "MIT",
"bugs": {
"url": "https://github.com/regou/justore/issues"
},
"homepage": "https://github.com/regou/justore",
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^2.3.0",
"mocha-eslint": "^3.0.1",
"rollup": "^1.16.2",
"rollup-plugin-buble": "^0.19.6",
"rxjs-compat": "6.x",
"should": "^7.1.0"
},
"dependencies": {
"immer": "2.1.*",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"rxjs": "6.x"
}
}