-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.42 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "rc-editor-jsonschema",
"version": "0.2.0",
"description": "jsonschema for landing in tech",
"keywords": [
"react",
"react-component",
"jsonschema",
"react-editor-jsonschema"
],
"engines": {
"node": ">=6.0.0"
},
"homepage": "https://github.com/ant-motion/editor-jsonschema",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/ant-motion/editor-jsonschema.git"
},
"bugs": "https://github.com/ant-motion/editor-jsonschema/issues",
"files": [
"lib",
"assets/*.css",
"dist",
"es"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"peerDependencies": {
"react": "*"
},
"scripts": {
"build": "father build && tsc",
"gh-pages": "father doc build && father doc deploy",
"start": "father doc dev",
"lint": "tslint --project ./tsconfig.json -c ./tslint.json --fix",
"dev": "father doc dev",
"test": "father test",
"pub": "npm run build && npm run gh-pages && npm publish",
"coverage": "father test --coverage"
},
"dependencies": {
"antd": "^3.19.1",
"babel-runtime": "^6.26.0",
"classnames": "^2.2.6",
"medium-editor": "^5.23.3",
"rc-tween-one": "^2.4.1",
"react-beautiful-dnd": "^11.0.3",
"react-color": "^2.17.3",
"schemas-utile": "^1.0.0",
"simple-evaluate": "^1.2.0"
},
"devDependencies": {
"@types/enzyme": "^3.9.3",
"@types/enzyme-to-json": "^1.5.3",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"babel-plugin-import": "^1.12.0",
"core-js": "^3.1.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"enzyme-to-json": "^3.3.5",
"father": "^2.6.6",
"jest": "^24.8.0",
"pre-commit": "^1.2.2",
"raf": "^3.4.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"pre-commit": [
"lint"
],
"jest": {
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)(spec|test).ts?(x)"
],
"setupFiles": [
"./tests/setup.ts"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageDirectory": "./coverage/",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}