-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "directional-navigation",
"version": "0.1.2",
"description": "",
"outputFormat": "commonjs",
"types": "build/types.d.ts",
"main": "build/index.js",
"scripts": {
"dev": "parcel ./src/dev/index.html --open",
"build": "parcel build src/lib/index.ts --dist-dir build",
"release": "npm run test && npm run build && release-it",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@qsalatiel/prettier-config": "^1.1.0",
"@testing-library/dom": "^8.19.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.4",
"@types/pug": "^2.0.6",
"eslint": "^8.30.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-testing-library": "^5.9.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"parcel": "^2.7.0",
"postcss": "^8.4.20",
"pug": "^3.0.2",
"release-it": "^15.5.1",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"publishConfig": {
"access": "public"
}
}