-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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": "@varsito/reformist",
"version": "1.0.0",
"description": "a form validation and rendering library backed by mobx and ajv",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib/",
"test": "yarn run build && jest",
"build": "babel --extensions '.ts' --extensions '.js' src/ -d lib/",
"prepublish": "yarn run clean && yarn test",
"postpublish": "git tag $(date) && git push --tags"
},
"author": "Ashish Gaikwad <[email protected]>",
"license": "MIT",
"dependencies": {
"ajv": "6.4.0",
"es6-symbol": "^3.1.1",
"lodash": ">=4.17.5",
"mobx": "=3.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/varsito/reformist.git"
},
"keywords": [
"form",
"jsonschema",
"conditional",
"mobx",
"antd",
"ajv"
],
"bugs": {
"url": "https://github.com/varsito/reformist/issues"
},
"homepage": "https://github.com/varsito/reformist#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"jest": "^23.6.0"
}
}