-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.72 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": "nestedreact",
"version": "2.1.4",
"main": "lib/index.js",
"lib": "lib/index.js",
"description": "Advanced models, state management, and data binding solution for React",
"homepage": "https://github.com/Volicon/React-Backbone-Type-R",
"keywords": [
"backbone",
"model",
"view",
"valuelink",
"data",
"binding",
"nestedtypes",
"react",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/Volicon/React-Backbone-Type-R.git"
},
"author": "Vlad Balin <https://github.com/gaperton>",
"contributors": [],
"peerDependencies": {
"jquery": "*",
"nestedtypes": "*",
"prop-types": "*",
"react": "*",
"react-dom": "*",
"react-mvx": "*",
"underscore": "*"
},
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/jquery": "^2.0.51",
"@types/prop-types": "^15.5.6",
"@types/react": "^16.7.12",
"jquery": "*",
"nestedtypes": "Volicon/Backbone-Type-R",
"prop-types": "*",
"react": "*",
"react-dom": "*",
"react-mvx": "Volicon/React-Type-R#develop",
"typescript": "*",
"underscore": "*"
},
"files": [
"dist",
"lib",
"src",
"tags.js",
"tags.jsx"
],
"license": "MIT",
"scripts": {
"build": "yarn && ./node_modules/.bin/tsc",
"deploy": "cp -R ./dist ./examples/*/node_modules/nestedreact",
"deploy:example": "bash -c 'target=$0/node_modules/nestedreact && mkdir -p $target && cp -R ./dist/ $target && cp ./dist/index.min.js.map $target && ((unlink $target/package.json || true) >/dev/null 2>&1) && cp ./tags.js* $target'",
"deploy:examples": "for exmpl in `ls -d ./examples/*`; do npm run deploy:example $exmpl; done"
}
}