-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@cloudaffine/weivjs",
"version": "0.1.0",
"description": " A home-brew UI view library for modern component-based web development",
"main": "lib/weiv.js",
"scripts": {
"build": "webpack --env dev && webpack --mode=production --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest ./test/*.test.js",
"test:watch": "jest --watch ./test/*.test.js",
"upgrade": "ncu -a && npm i"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudaffine/weiv.git"
},
"keywords": [
"weiv",
"component",
"frontend",
"framework",
"reactive"
],
"author": "Chao Yang",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudaffine/weiv/issues"
},
"homepage": "https://github.com/cloudaffine/weiv",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"flow-bin": "^0.69.0",
"jest": "^22.4.3",
"mocha": "^5.0.5",
"npm-check-updates": "^2.14.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.4.1",
"webpack-cli": "^2.1.5",
"yargs": "^11.0.0"
},
"dependencies": {
"debug": "^3.1.0",
"fbemitter": "^2.1.1",
"htmlparser2": "^3.9.2",
"jexl-sync": "^1.0.5",
"lodash-es": "^4.17.8",
"main-loop": "^3.4.0",
"mobx": "^4.1.1",
"virtual-dom": "^2.1.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
]
}
}