generated from darkaqua/node-with-typescript
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 859 Bytes
/
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
{
"name": "pathfinding.ts",
"version": "1.4.0",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"repository": "https://github.com/darkaqua/pathfinding.ts",
"scripts": {
"start": "./node_modules/.bin/ts-node ./src/sandbox.ts",
"start:nodemon": "nodemon",
"test": "jest",
"test:watch": "jest --watch",
"build": "./node_modules/.bin/tsc"
},
"keywords": [
"pathfinding",
"typescript"
],
"author": "darkaqua",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"@types/node": "latest",
"jest": "^26.6.3",
"ts-node": "latest",
"typescript": "latest"
}
}