-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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": "@cig-platform/library-template",
"version": "0.0.1",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "babel src --extensions \".ts\" --out-dir build --copy-files --no-copy-ignored && tsc --declaration --emitDeclarationOnly",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"lint": "eslint src",
"test": "jest src/tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edumoreira1506/cig-library-template.git"
},
"author": "Eduardo Moreira",
"license": "ISC",
"bugs": {
"url": "https://github.com/edumoreira1506/cig-library-template/issues"
},
"homepage": "https://github.com/edumoreira1506/cig-library-template#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-jest": "^27.5.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.10.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}