-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.38 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
{
"name": "vue-toy",
"version": "0.4.1",
"description": "Vue toy",
"main": "cjs/Vue.js",
"module": "esm/Vue.js",
"types": "lib/Vue.d.ts",
"files": [
"cjs",
"esm",
"lib",
"style",
"*.md"
],
"scripts": {
"docs": "packez build ./examples/index.js -d docs -c",
"start": "tsc -w",
"cjs": "transform-es src -d cjs -c -t cjs",
"esm": "transform-es src -d esm -c -t esm",
"tsc": "tsc",
"demo": "packez server ./examples/index.js -d dist -w -c",
"clear": "rimraf lib cjs esm docs dist",
"build": "run-s clear tsc cjs esm docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bplok20010/vue-toy.git"
},
"keywords": [
"vue",
"vue-toy"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/bplok20010/vue-toy/issues"
},
"homepage": "https://github.com/bplok20010/vue-toy#readme",
"devDependencies": {
"@types/lodash": "^4.14.155",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"npm-run-all": "^4.1.5",
"packez": "^4.1.3",
"rimraf": "^3.0.2",
"transform-es": "^5.0.4"
},
"browserslist": [
">=0.25%",
"not dead",
"not op_mini all",
"not Android 4.4.3-4.4.4",
"not ios_saf < 10",
"not Chrome < 50",
"firefox ESR"
],
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"shallowequal": "^1.1.0"
}
}