-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "@organization-name/repo-name",
"version": "0.0.0",
"author": "organization-name",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/organization-name/repo-name.git"
},
"bugs": {
"url": "https://github.com/organization-name/repo-name/issues"
},
"homepage": "https://github.com/organization-name/repo-name",
"scripts": {
"lib": "lib",
"lint": "eslint -c .eslintrc.json --ext .js,.ts .",
"build": "lib build --env.prod",
"test": "lib test --env.ci"
},
"dependencies": {
"tslib": "~2.4.0"
},
"devDependencies": {
"@types/jasmine": "^4.0.3",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^16.11.41",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-prettier": "^4.0.0",
"jasmine-core": "^4.2.0",
"lib-tools": "^2.0.4",
"prettier": "^2.7.1",
"protractor": "~7.0.0",
"ts-node": "^10.8.1",
"typescript": "~4.7.3"
}
}