-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
75 lines (75 loc) · 2.09 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
{
"name": "observable-membrane",
"version": "2.0.0",
"description": "A Javascript Membrane implementation using Proxies to observe mutation on an object graph",
"type": "module",
"module": "dist/observable-membrane.js",
"typings": "dist/main.d.ts",
"license": "MIT",
"author": "David Turissini <[email protected]>",
"keywords": [
"proxy",
"membrane",
"observe",
"mutation",
"track"
],
"homepage": "https://github.com/salesforce/observable-membrane",
"bugs": {
"url": "https://github.com/salesforce/observable-membrane/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:salesforce/observable-membrane.git"
},
"files": [
"dist"
],
"scripts": {
"format:check": "prettier --check '{src,test,scripts}/**/*.{ts,js}'",
"format": "prettier --write '{src,test,scripts}/**/*.{ts,js}'",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jest.config.js --coverage",
"prebuild": "rm -rf dist",
"build": "rollup -c",
"prepare": "yarn build",
"release:publish:ci": "./scripts/release/publish.js",
"release:version": "./scripts/release/version.js"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"execa": "^9.3.0",
"husky": "^9.0.11",
"is-ci": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rollup": "^4.14.1",
"semver": "^7.6.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"tslint": "^6.1.3",
"typescript": "^5.4.4"
},
"lint-staged": {
"**/*.{ts,js}": "eslint",
"{src,test,scripts}/**/*.{ts,js}": "prettier --write"
},
"exports": {
"production": "./dist/observable-membrane.prod.js",
"import": "./dist/observable-membrane.js"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"volta": {
"node": "20.12.2",
"yarn": "1.22.22"
}
}