-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "@nymphjs/tilmeld-client",
"version": "1.0.0-beta.81",
"description": "Nymph.js - Tilmeld Client",
"browser": "dist/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"nymph",
"ORM",
"object relational mapper"
],
"scripts": {
"clean": "npm run clean:ts && npm run clean:js",
"clean:ts": "test -d lib && rm -r lib || true",
"clean:js": "test -d dist && rm -r dist || true",
"build": "npm run build:ts && npm run build:js",
"build:ts": "tsc",
"build:js": "webpack",
"watch:ts": "tsc --watch",
"watch:js": "webpack --watch",
"prepublish": "npm run clean && npm run build",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/nymphjs.git"
},
"author": "Hunter Perrin <[email protected]>",
"bugs": {
"url": "https://github.com/sciactive/nymphjs/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@nymphjs/client-node": "^1.0.0-beta.81",
"@nymphjs/driver-sqlite3": "^1.0.0-beta.81",
"@nymphjs/nymph": "^1.0.0-beta.81",
"@nymphjs/server": "^1.0.0-beta.81",
"@nymphjs/tilmeld": "^1.0.0-beta.81",
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@nymphjs/client": "^1.0.0-beta.81"
}
}