-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.72 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.72 KB
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
{
"name": "mobx-react-form-devtools",
"license": "MIT",
"version": "0.0.0-development",
"author": "Claudio Savino <claudio.savino@me.com> (https://twitter.com/foxhound87)",
"description": "DevTools for MobX React Form",
"homepage": "https://www.npmjs.com/package/mobx-react-form-devtools",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean:build": "rimraf lib && rimraf umd",
"clean:modules": "rimraf node_modules && npm cache clean",
"clean:all": "npm run clean:build && npm run clean:modules",
"lint": "eslint . src --ext .ts --ignore-path .gitignore",
"build": "npm-run-all --parallel build:*",
"build:main": "tsc -d",
"build:umd": "webpack",
"build:umdmin": "MINIFY=YES webpack",
"prebuild": "npm run clean:build",
"precommit": "npm run lint && npm run cover",
"commit": "git-cz && git push origin",
"watch:build": "tsc --watch -d",
"watch:test": "npm run test -- -w",
"test": "TEST=true mocha -r ts-node/register ./tests/*.ts",
"cover": "nyc npm test",
"coverage:check": "nyc check-coverage --satements 0 --branches 0 --functions 0 --lines 0",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/foxhound87/mobx-react-form-devtools.git"
},
"keywords": [
"mobx",
"react",
"form",
"devtools"
],
"files": [
"src",
"lib",
"umd"
],
"engines": {
"node": ">=16.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@emotion/css": "^11.10.6",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"react-dock": "0.2.4",
"react-icons": "^2.2.7",
"react-json-tree": "0.11.0"
},
"peerDependencies": {
"mobx": "*",
"mobx-react": "*",
"mobx-react-form": "*",
"prop-types": "*",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@typescript-eslint/parser": "^5.54.1",
"chai": "^3.5.0",
"codecov": "^3.8.3",
"commitizen": "^4.3.0",
"css-loader": "^6.7.3",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^0.12.0",
"mocha": "^10.2.0",
"npm-run-all": "^3.1.2",
"nyc": "^15.1.0",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^2.5.4",
"semantic-release": "^19.0.5",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}