-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "@marianmeres/modelize",
"version": "1.1.0",
"description": "Single utility function `modelize` which proxies your model instance to monitor changes, validate, and more...",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.umd.js",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist/*",
"prettier": "prettier --write \"{src,tests}/**/*.{js,ts,json}\"",
"test": "node --loader ts-node/esm tests/index.ts",
"test:watch": "nodemon --delay 0.5 -q --watch \"src/**/*.*\" --watch \"tests/**/*.*\" --exec \"node --loader ts-node/esm tests/index.ts\" --",
"release": "release -v minor",
"release:patch": "release -v patch",
"release:major": "release -v major",
"tsc": "tsc",
"build": "npm run clean && rollup -c",
"dev": "npm run clean && rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marianmeres/modelize.git"
},
"author": "Marian Meres <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marianmeres/modelize/issues"
},
"homepage": "https://github.com/marianmeres/modelize#readme",
"devDependencies": {
"@marianmeres/release": "^1.0.0",
"@marianmeres/test-runner": "^2.0.13",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"@types/node": "^18.11.9",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"microbundle": "^0.15.1",
"mkdirp": "^1.0.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^3.2.0",
"rollup-plugin-dts": "^5.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"dependencies": {
"ajv": "^8.11.0",
"dequal": "^2.0.3"
}
}