-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.49 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
{
"name": "~npm_package_name~",
"version": "0.0.0-dev",
"description": "~package_description~",
"keywords": [
"node",
"package"
],
"repository": {
"type": "git",
"url": "https://github.com/renoki-co/~git_package_name~.git"
},
"author": "Alex Renoki",
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/~git_package_name~.git",
"main": "dist/index.js",
"module": "dist/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"lint": "eslint --ext .js,.ts ./src ./tests",
"prepublish": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm publish",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"dependencies": {},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/plugin-proposal-export-namespace-from": "^7.16.0",
"@babel/plugin-proposal-function-sent": "^7.16.0",
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
"@babel/plugin-proposal-throw-expressions": "^7.16.0",
"@babel/plugin-transform-object-assign": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@types/jest": "^26.0.19",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.5.0",
"jest": "^26.6.3",
"standard-version": "^9.1.0",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.4.3"
},
"bin": {}
}