-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "gura",
"version": "1.4.4",
"description": "A Gura parser for Javascript/Typescript",
"scripts": {
"test": "jest",
"lint": "eslint './src/**/*.{ts,js}'",
"check-all": "yarn test && yarn lint",
"build": "del 'dist/*' && tsc",
"upload": "yarn build && yarn publish"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "JWare Solutions <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gura-conf/gura-js-parser"
},
"keywords": [],
"bugs": {
"url": "https://github.com/gura-conf/gura-js-parser/issues"
},
"homepage": "https://github.com/gura-conf/gura-js-parser",
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-jest": "^26.6.3",
"del-cli": "^3.0.1",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-jsdoc": "^9.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^34.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"tmp": "^0.2.1",
"typescript": "^4.2.4"
},
"dependencies": {}
}