-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
55
56
{
"name": "@gpa-gemstone/gpa-symbols",
"version": "0.0.46",
"description": "UI Symbols for GPA products",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["lib/**/*"],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/GridProtectionAlliance/gpa-gemstone.git"
},
"keywords": [
"Symbols",
"Interactive",
"GSF",
"Gemstone",
"GridProtectionAlliance"
],
"author": "GridProtectionAlliance",
"license": "MIT",
"bugs": {"url": "https://github.com/GridProtectionAlliance/gpa-gemstone/issues"},
"homepage": "https://github.com/GridProtectionAlliance/gpa-gemstone#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@types/jest": "^27.0.0",
"@types/react": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "5.5.3"
},
"dependencies": {
"@babel/preset-typescript": "^7.14.5",
"babel-jest": "^29.0.0",
"babel-loader": "^8.2.2",
"jest-cli": "^29.0.0",
"react": "^18.2.0",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2",
"yarn": "^1.22.11"
},
"publishConfig": {"access": "public"}
}