-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.05 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
{
"name": "cardboard-js",
"version": "0.0.1",
"description": "A very simple, yet powerful framework/library to create web applications without the need to write any HTML.",
"type": "module",
"main": "./dist/cardboard.js",
"types": "./dist/cardboard.d.ts",
"scripts": {
"test": "jest --coverage",
"lint": "eslint ./src/**/*.ts",
"test:watch": "jest --coverage --watchAll",
"build": "rimraf dist && tsc --p tsconfig.json && npm run build:docs && npm run copy:definitions && npm run build:example && npm run build:bundle:main",
"build:watch": "tsc --watch",
"build:example": "tsc --p examples/tsconfig.json",
"build:example:watch": "tsc --watch --p examples/tsconfig.json",
"build:docs": "typedoc --out docs src/*.ts",
"build:_exp": "tsc --p _experiments/tsconfig.json",
"build:bundle:main": "esbuild --bundle --global-name=Cardboard --outfile=dist/bundle/cardboard.bundle.js --minify src/cardboard.ts",
"build:bundle:main:nomin": "esbuild --bundle --global-name=Cardboard --outfile=dist/bundle/cardboard.bundle.js --minify-whitespace src/cardboard.ts",
"copy:definitions": "./scripts/copy-definitions.sh"
},
"author": "nombrekeff",
"repository": {
"git": "https://github.com/nombrekeff/cardboard-js"
},
"license": "ISC",
"devDependencies": {
"@tweenjs/tween.js": "^21.0.0",
"@types/jest": "^29.5.5",
"@types/jsdom": "^21.1.3",
"@types/tween.js": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jsdom": "^22.1.0",
"lite-server": "^2.6.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"dependencies": {
"fast-deep-equal": "^3.1.3"
}
}