-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "@paxperscientiam/ts-models",
"version": "0.0.2",
"description": "Base classes for model classes that store data in browser's localstorage.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"source": "src/index.ts",
"scripts": {
"prepublishOnly": "npm run start",
"clean": "command rm -rf ./lib/*",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"start": "npm run clean && npm run tsc",
"example": "ts-node --skip-project fusebox.ts",
"test": "ts-node --skip-project fusebox.ts build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paxperscientiam/ts-models.git"
},
"author": "Christopher David Ramos",
"license": "ISC",
"bugs": {
"url": "https://github.com/paxperscientiam/ts-models/issues"
},
"homepage": "https://github.com/paxperscientiam/ts-models#readme",
"dependencies": {
"@paxperscientiam/dlv.ts": "^1.2.5",
"store2": "^2.12.0"
},
"devDependencies": {
"@types/node": "^14.14.45",
"fuse-box": "^4.0.0",
"fuse-box-typechecker": "^3.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"keywords": [
"ORM",
"model",
"localstorage"
]
}