-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "a-star-puzzle-solver",
"version": "2.1.0",
"description": "A* search algorithm in TypeScript that solves puzzle game problem",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"files":[
"dist",
"lib"
],
"scripts": {
"clear": "rimraf lib",
"create:lib-normal": "node_modules/.bin/webpack --output-filename a-star-puzzle-solver.umd.js",
"create:lib-min": "node_modules/.bin/webpack --output-filename a-star-puzzle-solver.umd.min.js -p",
"create:lib": "npm run create:lib-normal && npm run create:lib-min",
"build": "npm run clear && npm run create:lib",
"build:w": "npm run build -- --watch",
"start:ts": "tsc --watch",
"start:js": "nodemon ./dist/index.js",
"test": "mocha --require ts-node/register --extensions ts,tsx --watch-files src 'tests/**/*.{ts,tsx}'",
"test:tdd": "npm test -- --watch",
"test:coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexandreKavalerski/a-star-puzzle-solver.git"
},
"author": "Alexandre Kavalerski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexandreKavalerski/a-star-puzzle-solver/issues"
},
"keywords": [
"Search Algorithm",
"Search Problem",
"A Star",
"A*",
"Typescript"
],
"homepage": "https://github.com/AlexandreKavalerski/a-star-puzzle-solver#readme"
}