-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 884 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 884 Bytes
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
{
"name": "pony-run",
"description": "A labyrinth and memory game with Rarity the mare, and the Smooze",
"repository": "git@github.com:ponydevs/ponyrun.git",
"license": "ISC",
"scripts": {
"build": "parcel build src/page.html -d public -o index.html"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"src/**/*.test.ts"
]
},
"devDependencies": {
"@types/node": "^13.9.1",
"@types/seedrandom": "^2.4.28",
"ava": "^3.8.1",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@ui5/webcomponents": "^1.0.0-rc.7",
"node-dijkstra": "^2.5.0",
"parcel": "^1.12.4",
"rxjs": "^7.0.0-beta.0",
"seedrandom": "^3.0.5",
"typeface-anton": "^0.0.72"
}
}