-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "simpa",
"version": "0.1.3",
"description": "Lightweight library for prototyping Single Page Applications.",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EngosSoftware/simpa.git"
},
"keywords": [
"lightweight",
"library",
"prototyping",
"single",
"page",
"applications"
],
"author": "Dariusz Depta",
"license": "MIT",
"bugs": {
"url": "https://github.com/EngosSoftware/simpa/issues"
},
"homepage": "https://github.com/EngosSoftware/simpa#readme",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"jest": "^29.6.2",
"jest-diff": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/marked": "^5.0.1",
"@types/uuid-js": "^0.7.3",
"marked": "^6.0.0",
"uuid-js": "^0.7.5"
},
"files": [
"lib/"
]
}