forked from svapreddy/clearx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.79 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
{
"name": "clearx",
"version": "2.1.1",
"description": "Fast & Effortless global state management for React, Preact and Inferno",
"main": "src/index.js",
"browser": "dist/clearx.js",
"typings": "src/typings.d.ts",
"scripts": {
"test": "jest --runInBand --coverage",
"build": "./node_modules/.bin/rollup -c",
"lint:fix": "./node_modules/.bin/standard ./src --fix",
"todo": "./node_modules/.bin/rollup -c todo-app/rollup.todo-app.config.js -w"
},
"repository": {
"type": "git",
"url": "https://github.com/Autodesk/clearx"
},
"keywords": [
"react",
"preact",
"inferno",
"es6",
"store",
"state",
"global store",
"root store",
"global state",
"root state",
"scalable state",
"predictable",
"slice"
],
"author": "Autodesk Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^9.3.0",
"babel-jest": "^24.9.0",
"buble": "^0.19.6",
"jest": "^24.9.0",
"package.json": "^2.0.1",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"rollup": "^1.1.0",
"rollup-jest": "0.0.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-license": "^0.12.1",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-serve": "^1.0.0",
"rollup-plugin-standard": "^1.0.0",
"rollup-plugin-terser": "^5.1.2"
},
"dependencies": {
"@types/react": "^16.9.5",
"deepmerge": "^3.1.0",
"fast-deep-equal": "^2.0.1",
"type-fest": "^0.8.1"
},
"standard": {
"ignore": [
"/dist/**"
]
}
}