-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.45 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@noflux/react",
"version": "1.0.0",
"description": "Official React bindings for noflux",
"main": "dist/noflux-react.cjs.js",
"module": "dist/noflux-react.es.js",
"unpkg": "dist/noflux-react.umd.js",
"types": "index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint src/ test/",
"lint:watch": "esw src/ test/ -w",
"coverage": "npm run ava:coverage",
"ava": "ava --verbose",
"ava:watch": "ava --watch --verbose",
"ava:coverage": "nyc ava --verbose",
"ts": "tsc -p test-ts/",
"ts:watch": "tsc -p test-ts/ --watch",
"dev": "concurrently -p \"[{name}]\" -n \"lint,ava\" \"npm run lint:watch\" \"npm run ava:watch\"",
"test": "npm run lint && npm run coverage && npm run ts",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:umd-min",
"build:cjs": "cross-env TARGET=cjs rollup -c",
"build:es": "cross-env TARGET=es rollup -c",
"build:umd": "cross-env TARGET=umd rollup -c",
"build:umd-min": "cross-env TARGET=umd NODE_ENV=production rollup -c"
},
"ava": {
"files": [
"test/**/*.js"
],
"sources": [
"**/*.{js,jsx}",
"!dist/**/*"
],
"babel": {
"extensions": [
"js"
]
},
"require": [
"@babel/register"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nofluxjs/noflux-react.git"
},
"keywords": [
"noflux",
"react",
"redux",
"flux",
"state"
],
"contributors": [
{
"name": "ssnau",
"email": "[email protected]",
"url": "http://liuxijin.com/"
},
{
"name": "Malash",
"email": "[email protected]",
"url": "https://malash.me/"
},
{
"name": "sartrey",
"email": "[email protected]",
"url": "https://sartrey.cn/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nofluxjs/noflux-react/issues"
},
"homepage": "https://github.com/nofluxjs/noflux-react#readme",
"dependencies": {
"@noflux/state": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/create-react-class": "^15.6.1",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"ava": "^1.0.0-beta.8",
"babel-eslint": "^9.0.0",
"concurrently": "^4.0.1",
"create-react-class": "^15.6.3",
"cross-env": "^5.2.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.8.2",
"eslint-watch": "^4.0.2",
"jsdom": "^12.0.0",
"nyc": "^13.0.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.1",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^5.0.2",
"typescript": "^3.0.3"
},
"peerDependencies": {
"react": ">=15.3.0"
}
}