-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 KB
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": "ity",
"version": "1.0.0",
"description": "A miniscule, depedency free JavaScript MVC",
"main": "dist/ity.cjs.js",
"module": "dist/ity.esm.js",
"types": "dist/ity.d.ts",
"exports": {
"import": "./dist/ity.esm.js",
"require": "./dist/ity.cjs.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "jest",
"pretest": "tsc -p tsconfig.json && cp build/Ity.js Ity.js",
"coverage": "jest --coverage",
"precoverage": "tsc -p tsconfig.json && cp build/Ity.js Ity.js",
"build": "rollup -c",
"test:dist": "ITY_FILE=dist/ity.min.js npm test"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^20",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.17.0",
"rollup-plugin-dts": "^6.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dcocchia/Ity.git"
},
"keywords": [
"ity",
"mvc",
"model",
"view",
"spa"
],
"author": "Dominic Cocchiarella",
"license": "MIT"
}