-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "observable-membrane",
"version": "1.1.2",
"description": "A Javascript Membrane implementation using Proxies to observe mutation on an object graph",
"main": "dist/commonjs/observable-membrane.js",
"module": "dist/modules/observable-membrane.js",
"typings": "dist/types/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": {
"lint": "tslint -p tsconfig.json",
"test": "jest --config jest.config.js --coverage",
"prebuild": "rm -rf dist",
"build": "tsc --emitDeclarationOnly && rollup -c",
"changelog": "yarn changelog:generate && yarn changelog:publish",
"changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:publish": "git add CHANGELOG.md && git commit -m 'docs(changelog): publish release changelog' && git push",
"release:publish:ci": "./scripts/release/publish.js",
"release:version": "./scripts/release/version.js"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.4.1",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"conventional-changelog-cli": "^2.1.1",
"execa": "^5.0.0",
"is-ci": "^3.0.0",
"jest": "^26.6.3",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.5",
"ts-jest": "^26.5.3",
"tslib": "^2.1.0",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"resolutions": {
"**/optimist/minimist": "1.2.5"
}
}