-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ssrp",
"description": "An implementation of the SQL Server Resolution protocol.",
"version": "0.0.0-development",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint . --ext js,ts && tsc",
"test": "mocha",
"build": "pegjs -o src/parser.js src/parser.pegjs",
"prepublish": "pegjs -o src/parser.js src/parser.pegjs && babel src --out-dir lib --extensions .js,.ts && tsc --noEmit false --emitDeclarationOnly true && cp src/parser.d.ts lib/parser.d.ts"
},
"author": "Arthur Schreiber (schreiber.arthur@gmail.com)",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@babel/register": "^7.10.1",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.11",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.16.0",
"mocha": "^6.2.3",
"pegjs": "^0.10.0",
"semantic-release": "^17.0.8",
"semantic-release-cli": "^5.3.1",
"typescript": "^3.9.5"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"abort-controller": "^3.0.0"
},
"babel": {
"ignore": [
"./src/*.d.ts"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 6
},
"shippedProposals": true
}
],
[
"@babel/preset-typescript",
{
"allowDeclareFields": true
}
]
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"repository": {
"type": "git",
"url": "https://github.com/tediousjs/node-ssrp.git"
}
}