-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.49 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": "react-painlessform",
"version": "3.2.0-rc5",
"description": "React Forms without pain",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"src",
"lib",
"lib/index.d.ts"
],
"scripts": {
"publish:beta": "npm run build & npm publish -tag beta",
"publish:alpha": "npm run build & npm publish -tag alpha",
"publish:rc": "npm run build & npm publish -tag rc",
"publish:latest": "npm run build & npm publish",
"build:docs": "typedoc --out docs src/",
"build:commonjs": "tsc",
"build": "npm run build:commonjs",
"test": "nyc mocha --opts mocha.opts",
"test2": "mocha --opts mocha.opts",
"posttest": "nyc report --reporter=json && codecov --disable=gcov -f coverage/coverage-final.json"
},
"release": {
"branch": "master"
},
"publishConfig": {
"tag": "rc"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"json"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Wroud/react-painlessform.git"
},
"keywords": [
"typescript",
"react",
"form"
],
"author": "Alexey Potsetsuev",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wroud/react-painlessform/issues"
},
"homepage": "https://github.com/Wroud/react-painlessform#readme",
"dependencies": {
"react": "^16.3.0-0",
"react-dom": "^16.0.0-0",
"shallowequal": "^1.0.2",
"deep-equal": "1.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-arrays": "^1.0.2",
"@types/deep-equal": "^1.0.1",
"@types/enzyme": "^3.1.10",
"@types/jsdom": "^11.0.4",
"@types/mocha": "^5.0.0",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@types/react-test-renderer": "^16.0.1",
"@types/shallowequal": "^0.2.1",
"@types/yup": "^0.24.3",
"chai": "^4.1.2",
"chai-arrays": "^2.0.0",
"codecov": "3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jsdom": "^11.8.0",
"mocha": "^5.0.5",
"nyc": "^6.6.1",
"react-test-renderer": "^16.3.2",
"source-map-support": "^0.5.5",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-react": "^3.5.1",
"typedoc": "^0.11.1",
"typescript": "2.8.3",
"yup": "^0.24.1"
}
}