forked from salesforce/observable-membrane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "observable-membrane",
"version": "0.25.0",
"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 <dturissini@salesforce.com>",
"keywords": [
"proxy",
"membrane",
"observe",
"mutation"
],
"homepage": "https://github.com/salesforce/observable-membrane",
"bugs": {
"url": "https://github.com/salesforce/observable-membrane/issues"
},
"repository": {
"type": "git",
"url": "git@github.com: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"
},
"devDependencies": {
"@types/jest": "~23.0.0",
"@types/node": "8.9.4",
"babel-minify": "0.4.3",
"conventional-changelog-cli": "^2.0.1",
"jest": "~23.1.0",
"rollup": "0.60.1",
"rollup-plugin-replace": "~2.0.0",
"rollup-plugin-typescript": "~0.8.1",
"ts-jest": "~22.0.4",
"tslint": "~5.9.1",
"typescript": "2.7.2"
}
}