-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "linked-controls",
"version": "1.0.4",
"description": "React controls using links from valuelink package",
"main": "./js/index.js",
"module": "./js/indes.js",
"types": "./js/index.d.ts",
"files": [
"js",
"jsx",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/VoliJS/NestedLink.git"
},
"keywords": [
"react",
"valuelink",
"databinding",
"forms",
"binding",
"data",
"link",
"state",
"react-component"
],
"author": "Vlad Balin",
"license": "MIT",
"bugs": {
"url": "https://github.com/VoliJS/NestedLink/issues"
},
"homepage": "https://github.com/VoliJS/NestedLink/linked-controls/",
"peerDependencies": {
"react": "*",
"valuelink":"*"
},
"devDependencies": {
"@types/react": "*",
"react": "*",
"valuelink":"*",
"classnames": "^2.2.0",
"proptypes": "*",
"rollup": "^0.58.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"tslib": "^1.9.3",
"typescript": "*"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn && yarn build-js && yarn build-jsx",
"build-js": "node_modules/.bin/tsc ./src/index.tsx --declaration true --sourceMap true --jsx react --module commonjs --target ES5 --outDir ./js",
"build-jsx": "node_modules/.bin/tsc ./src/index.tsx --declaration true --sourceMap true --moduleResolution node --jsx preserve --module es6 --target ESNext --lib ES2017,DOM --outDir ./jsx"
}
}