-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.14 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
{
"name": "mobx-form",
"version": "13.3.6",
"description": "A simple form helper for mobx",
"main": "dist/mobx-form.cjs.js",
"_browser": "dist/mobx-form.umd.js",
"browser": {
"./dist/index.js": "./dist/mobx-form.umd.js",
"./dist/index.esm.js": "./dist/mobx-form.esm.js"
},
"module": "dist/mobx-form.esm.js",
"_legacy_module": "dist/mobx-form.legacy.js",
"types": "mobx-form.d.ts",
"files": [
"dist/",
"mobx-form.d.ts"
],
"scripts": {
"check": "eslint --cache --cache-location node_modules/.cache/ -f friendly 'src/**/*.js' 'tests/**/*.js'",
"autofix": "npm run check -- --fix",
"changelog": "changelogx -f markdown -o ./changelog.md",
"do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
"install-hooks": "changelogx install-hook",
"pre-v": "npm run check",
"post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
"bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
"bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
"bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
"bump-prerelease": "npm run pre-v && npm version prerelease -m 'BLD: Release v%s' && npm run post-v",
"prepublishOnly": "npm run build",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --config jest.config.js",
"smoke:test": "babel-node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/royriojas/mobx-form.git"
},
"keywords": [
"form",
"model",
"mobx"
],
"author": "royriojas",
"license": "MIT",
"bugs": {
"url": "https://github.com/royriojas/mobx-form/issues"
},
"homepage": "https://github.com/royriojas/mobx-form#readme",
"dependencies": {
"debouncy": "1.0.8",
"jq-trim": "0.1.2",
"mobx": "^6.0.1"
},
"changelogx": {
"ignoreRegExp": [
"BLD: Release",
"DOC: Generate Changelog",
"Generated Changelog"
],
"issueIDRegExp": "#(\\d+)",
"commitURL": "https://github.com/royriojas/mobx-form/commit/{0}",
"authorURL": "https://github.com/{0}",
"issueIDURL": "https://github.com/royriojas/mobx-form/issues/{0}",
"projectName": "mobx-form"
},
"peerDependencies": {
"mobx": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/runtime": "^7.12.1",
"@redisrupt/eslint-red": "^6.0.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"changelogx": "^5.0.4",
"jest": "^26.6.3",
"rollup": "^2.10.0",
"sleep.async": "^1.0.4"
}
}