forked from VoliJS/NestedLink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (58 loc) · 1.5 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
{
"name": "valuelink",
"version": "1.3.10",
"description": "React valueLink implementation with links to objects, validation, and purely functional state updates.",
"main": "valuelink.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Volicon/valuelink.git"
},
"keywords": [
"react",
"valuelink",
"databinding",
"forms",
"binding",
"data",
"link",
"state",
"react-component"
],
"author": "Vlad Balin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Volicon/valuelink/issues"
},
"homepage": "https://github.com/Volicon/valuelink#readme",
"devDependencies": {
"babel": "<6.0.0",
"babel-core": "<6.0.0",
"babel-loader": "<6.0.0",
"babel-runtime": "<6.0.0",
"classnames": "^2.2.0",
"css-loader": "^0.23.0",
"react": "*",
"react-dom": "*",
"react-modal": "^1.2.1",
"style-loader": "^0.13.0",
"typescript": "^1.8.10",
"webpack": "^1.12.6"
},
"files": [
"valuelink.js",
"valuelink.js.map",
"valuelink.ts",
"valuelink.d.ts",
"tags.jsx",
"tags.js",
"LICENSE"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-links && npm run build-tags && npm run build-examples",
"build-links" : "node_modules/.bin/tsc",
"build-examples" : "node_modules/.bin/webpack",
"build-tags" : "node_modules/.bin/babel tags.jsx --out-file tags.js",
"watch": "node_modules/.bin/webpack --progress --colors --watch"
}
}