-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 869 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 869 Bytes
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
{
"name": "lib-template",
"version": "1.0.0",
"description": "A starting point for writing JavaScript libraries",
"main": "dist/main.js",
"scripts": {
"test": "jest --coverage --config=jest.config.js",
"dev": "rollup -c -w"
},
"keywords": [],
"author": "Deniz Okcu",
"repository": {
"type": "git",
"url": "https://github.com/DenizOkcu/lib-template.git"
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.35",
"rollup": "^4.11.0",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.2"
},
"dependencies": {
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}