-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.78 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
{
"author": "DipScope authors and contributors",
"description": "Manage any kind of backend API or other datasource through the model reflection.",
"dependencies": {
"tslib": "^2.0.1"
},
"peerDependencies": {
"@dipscope/type-manager": "^7.2.1",
"lodash": "^4.17.0"
},
"devDependencies": {
"@types/jasmine": "^3.6.3",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"circular-dependency-plugin": "^5.2.2",
"eslint": "^7.19.0",
"jasmine": "^3.6.4",
"jasmine-spec-reporter": "^6.0.0",
"jasmine-ts": "^0.3.0",
"reflect-metadata": "^0.1.13",
"shx": "^0.3.3",
"ts-loader": "^8.0.15",
"ts-node": "^8.10.2",
"typescript": "^4.1.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"keywords": [
"entity",
"store",
"orm",
"reflection",
"filtering",
"sorting",
"pagination"
],
"license": "Apache-2.0",
"main": "./dist/umd/index.js",
"module": "./dist/es5/index.js",
"es2015": "./dist/es2015/index.js",
"types": "./dist/types/index.d.ts",
"name": "@dipscope/entity-store",
"repository": {
"type": "git",
"url": "https://github.com/dipscope/EntityStore.TS.git"
},
"scripts": {
"build": "npm run build:clean && npm run build:types && npm run build:es5 && npm run build:es2015 && npm run build:umd",
"build:clean": "shx rm -rf dist",
"build:types": "tsc -p tsconfig/tsconfig.types.json",
"build:es5": "tsc -p tsconfig/tsconfig.es5.json",
"build:es2015": "tsc -p tsconfig/tsconfig.es2015.json",
"build:umd": "npx webpack --config=webpack.config.js",
"test": "jasmine-ts --config=jasmine.json",
"lint": "eslint . --ext .ts"
},
"version": "2.0.4"
}