-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.93 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
{
"name": "vlow",
"version": "1.1.17",
"description": "A simple library for unidirectional dataflow architecture inspired by Reflux",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --require @babel/register",
"lint": "./node_modules/.bin/eslint ./src/*.js --color",
"build:dev": "./node_modules/.bin/webpack --progress --devtool eval-cheap-source-map",
"build:prod": "NODE_ENV='production' ./node_modules/.bin/webpack --progress",
"babel": "npx babel src --out-dir lib && cp src/index.d.ts lib/ && echo \">WARNING: This \\`lib\\` folder is generated with \\`npm run babel\\` and should not be modified!\" > lib/README.md "
},
"repository": {
"type": "git",
"url": "git+https://github.com/cesbit/vlow.git"
},
"keywords": [
"Reflux",
"React",
"Flux"
],
"author": {
"name": "Jeroen van der Heijden",
"email": "jeroen@cesbit.com",
"url": "https://github.com/joente"
},
"contributors": [
{
"name": "Koos Joosten",
"email": "koos@cesbit.com",
"url": "https://github.com/Koos85"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cesbit/vlow/issues"
},
"homepage": "https://github.com/cesbit/vlow#readme",
"dependencies": {
"@babel/runtime": "^7.16.3",
"invariant": "^2.2.4"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-object-assign": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/register": "^7.16.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.27.0",
"mocha": "^9.1.3",
"react": "^17.0.2",
"set-value": ">=4.0.1",
"terser": "^5.9.0",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.63.0",
"webpack-cli": "^4.9.1"
}
}