-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "@tentjs/tent",
"version": "0.0.32",
"description": "A jsx-free, super-lightweight and zero-dependency library to add interactivity to the web - without all the nonsense.",
"source": "src/main.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tentjs/tent.git"
},
"directories": {
"src": "src"
},
"scripts": {
"watch": "parcel watch --no-cache",
"build": "rm -rf dist .parcel-cache && parcel build",
"lint:fix": "prettier --write src/**/*.ts",
"release": "npm run build && npm publish --access public",
"test": "jest"
},
"devDependencies": {
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"@testing-library/dom": "^10.1.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.10.3",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"author": "sebkolind <[email protected]>",
"license": "MIT"
}