-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "neshek",
"version": "0.0.1",
"description": "Schema driven data access, API and UI framework",
"homepage": "https://neshek.com",
"repository": "github:mmichlin66/neshek",
"main": "./lib/neshek.js",
"module": "./lib/neshek.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "npx tsc -b && webpack",
"build-tests": "npx tsc -b && webpack --config src/test/webpack.config.js",
"typedoc": "npx typedoc"
},
"author": {
"name": "Michael Michlin",
"email": "mmulya@outlook.com",
"url": "https://mimjs.com"
},
"keywords": [
"ORM",
"API",
"typescript",
"schema"
],
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^4.3.1",
"copy-webpack-plugin": "^12.0.2",
"ifdef-loader": "^2.3.2",
"source-map-loader": "^5.0.0",
"typedoc": "^0.25.8",
"typescript": "^5.3.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"files": [
"lib/neshek.js",
"lib/neshek.dev.js",
"lib/index.d.ts",
"lib/api/**/*.d.ts"
]
}