-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.44 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": "vivisector",
"version": "0.0.0-development",
"description": "subscribe to any object and commit or revert state mutations",
"keywords": [
"observable",
"observables",
"event-driven",
"reactive programming",
"events"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MatthewZito/vivisector-js.git"
},
"author": "Matthew T Zito (goldmund)",
"files": [
"dist/"
],
"exports": {
"require": "./dist/vivisector.cjs.js",
"import": "./dist/vivisector.es.js"
},
"main": "./dist/vivisector.cjs.js",
"browser": "./dist/vivisector.umd.js",
"module": "./dist/vivisector.es.js",
"types": "dist/vivisector.d.ts",
"engines": {
"node": ">= 10"
},
"scripts": {
"lint": "eslint --ext .js,.ts,.json --fix .",
"test": "jest --bail --coverage __tests__",
"test:watch": "jest --watch",
"prebuild": "pnpm clean",
"build": "pnpm types && rollup -c",
"clean": "rimraf coverage dist .build",
"prerelease": "npm pack && tar -xvzf *.tgz && rimraf package *.tgz",
"semantic-release": "semantic-release",
"types": "tsc"
},
"bugs": {
"url": "https://github.com/MatthewZito/vivisector-js/issues"
},
"homepage": "https://github.com/MatthewZito/vivisector-js#readme",
"lint-staged": {
"src/**/*.ts": [
"pnpm lint",
"pnpm test"
]
},
"devDependencies": {
"@babel/cli": "7.15.4",
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.4",
"@babel/preset-typescript": "7.16.7",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@magister_zito/eslint-config": "^0.4.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-typescript": "8.2.5",
"@types/jest": "27.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.4",
"jest": "27.1.0",
"jest-extended": "0.11.5",
"lint-staged": "11.1.2",
"prettier": "2.6.2",
"rimraf": "^3.0.2",
"rollup": "2.58.3",
"rollup-plugin-dts": "3",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "^17.4.7",
"tslib": "2.3.1",
"typescript": "4.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}