This repository has been archived by the owner on Feb 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
74 lines (74 loc) · 1.83 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
65
66
67
68
69
70
71
72
73
74
{
"name": "tcomb-form",
"version": "0.9.21",
"description": "React.js powered UI library for developing forms writing less code",
"main": "lib/main.js",
"files": [
"lib",
"src",
"dist"
],
"scripts": {
"dev": "webpack --config=dev/webpack.config.js --watch --progress",
"lint": "eslint src test",
"test:node": "babel-node test",
"test": "npm run lint && karma start",
"watch": "rm -rf lib/* && babel src -d lib -w",
"build": "rm -rf lib/* && babel src -d lib",
"dist": "webpack --config webpack.dist.config.js --progress"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/tcomb-form.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/tcomb-form/issues"
},
"homepage": "https://github.com/gcanti/tcomb-form",
"dependencies": {
"tcomb-form-templates-bootstrap": "^0.2.0",
"tcomb-validation": "^3.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel": "5.8.38",
"babel-core": "5.8.38",
"babel-eslint": "4.1.8",
"babel-loader": "5.3.2",
"eslint": "1.10.3",
"eslint-config-airbnb": "1.0.0",
"eslint-plugin-react": "3.10.0",
"isparta-loader": "1.0.0",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.1.0",
"karma-tap": "3.1.1",
"karma-webpack": "1.7.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-test-renderer": "^15.5.4",
"tape": "4.0.0",
"webpack": "1.12.8"
},
"tags": [
"form",
"forms",
"validation",
"generation",
"react",
"react-component"
],
"keywords": [
"form",
"forms",
"validation",
"generation",
"react",
"react-component"
]
}