-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.31 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.31 KB
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
{
"name": "observable-entities",
"version": "1.0.0",
"description": "Base classes that notify observers when properties are updated and objects are added or removed from collections.",
"keywords": [
"change-tracking",
"observables",
"proxies",
"set",
"map",
"angular"
],
"main": "dist/bundles/observable-entities.umd.js",
"module": "dist/bundles/observable-entities.es2015.js",
"typings": "dist/types/observable-entities.d.ts",
"author": "Anthony Sneed <tony@tonysneed.com>",
"repository": {
"type": "git",
"url": "https://github.com/TrackableEntities/observable-entities-js.git"
},
"license": "MIT",
"engines": {
"node": ">=8.5",
"npm": ">=6.0"
},
"files": [
"dist/bundles",
"dist/types"
],
"scripts": {
"lint": "tslint -p 'tsconfig.json' 'src/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc && rollup -c && typedoc --out dist/docs --target es6 --theme minimal --exclude '**/*.spec.ts' --mode modules src",
"start": "tsc-watch --onSuccess \"rollup -c\"",
"test": "jest -c ./jest.config.js",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"prepush": "npm run test:prod && npm run build"
},
"dependencies": {
"rxjs": "~6.4.0"
},
"peerDependencies": {
"tslib": ">=1.9.0"
},
"devDependencies": {
"@angular/compiler": "^8.0.2",
"@angular/core": "^8.0.2",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"codelyzer": "^5.1.0",
"colors": "^1.3.3",
"cross-env": "^5.2.0",
"husky": "^2.4.1",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"lodash.camelcase": "^4.3.0",
"prompt": "^1.0.0",
"replace-in-file": "^4.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.16.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-uglify": "^6.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsc-watch": "^2.2.1",
"tslint": "^5.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.2",
"webpack-config-utils": "^2.3.1",
"zone.js": "^0.9.1"
}
}