forked from gaperton/React-MVx
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "react-mvx",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/gaperton/React-MVx.git"
},
"description": "Type-R bindings for React",
"main": "./dist/index.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"dist",
"lib",
"src",
"tags.jsx",
"tags.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "./node_modules/.bin/tsc && ./node_modules/.bin/rollup --config && cp ./node_modules/valuelink/tags.* .",
"deploy:example": "bash -c 'target=$0/node_modules/react-mvx && mkdir -p $target && cp -R ./dist/ $target && cp ./tags.js* $target'",
"deploy:examples": "for exmpl in `ls -d ./examples/*`; do npm run deploy:example $exmpl; done",
"build": "yarn && npm run compile",
"docs": "node docs/build.js"
},
"keywords": [
"react",
"mvc",
"model",
"state",
"mvvm"
],
"author": "Vlad Balin",
"license": "MIT",
"peerDependencies": {
"prop-types": "*",
"react": "*",
"type-r": "^3.0.0"
},
"dependencies": {
"tslib": "*",
"valuelink": "^1.0.0"
},
"devDependencies": {
"@types/prop-types": "^15.5.2",
"@types/react": "^16.7.13",
"handlebars": "*",
"highlight.js": "^9.12.0",
"marked": "^0.3.19",
"prop-types": "*",
"react": "*",
"rollup": "^0.50.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^2.0.1",
"type-r": "^3.0.0",
"typescript": "*"
}
}