-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "perforator",
"version": "1.0.0",
"description": "Cypher package",
"main": "dist/index.js",
"jest-runner-tsc": {
"tsconfigPath": "./jest.tsc.config.js"
},
"scripts": {
"start:compile": "gulp compile",
"start:dev": "gulp watch",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PuzzlerDev/perforator.git"
},
"author": "PuzzlerDev",
"license": "ISC",
"bugs": {
"url": "https://github.com/PuzzlerDev/perforator/issues"
},
"homepage": "https://github.com/PuzzlerDev/perforator#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"gulp": "^4.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^27.2.0",
"jest-runner-tsc": "^1.6.0",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
},
"dependencies": {
"ts-node": "^10.2.1"
}
}