-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.83 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
{
"name": "component-registry",
"version": "3.0.0-beta.1",
"description": "Javascript component registry inspired by the awesome ZTK component registry (Python). Build nice reusable components with interfaces, adapters and utilities. Supports composition through a Javascript friendly implementation of multiple inheritance",
"author": {
"name": "Sebastian Ware",
"email": "sebastian@urbantalk.se",
"url": "https://github.com/jhsware"
},
"license": "MIT",
"homepage": "https://github.com/jhsware/component-registry",
"bugs": {
"url": "https://github.com/jhsware/component-registry/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhsware/component-registry.git"
},
"source": "src/index.ts",
"main": "dist/index.js",
"browser": "dist/index.cjs.js",
"module": "dist/index.module.js",
"types": "dist/types.d.ts",
"sideEffects": false,
"browserslist": "> 0.5%, not dead",
"engines": {
"node": ">=16"
},
"targets": {
"browser": {
"optimize": true
}
},
"dependencies": {
"@swc/helpers": "^0.4.14",
"uuid": "^9.0.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.8.1",
"@parcel/transformer-typescript-types": "^2.8.1",
"@types/node": "^18.11.9",
"jest-environment-jsdom": "^29.1.2",
"parcel": "^2.8.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"scripts": {
"build": "npm run build:clean && NODE_ENV=production parcel build",
"test": "NODE_ENV=production npm run build && NODE_ENV=test jest",
"test-debug": "NODE_ENV=test jest --inspect-brk --no-timeouts",
"prepublishOnly": "npm run build",
"preversion": "npm run test",
"postversion": "git push && git push --tags",
"build-dev": "rm -rf ./dist && NODE_ENV=development parcel build --no-optimize",
"build:clean": "rm -rf dist/"
}
}