-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1 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
{
"name": "amazeing",
"version": "1.0.0",
"description": "A map generator utilizing generators.",
"main": "./dist/index.js",
"typings": "./dist/src/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "parcel build src/index.ts --target node",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kellyirc/amazeing.git"
},
"keywords": [
"maze",
"generator",
"map"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kellyirc/amazeing/issues"
},
"homepage": "https://github.com/kellyirc/amazeing#readme",
"dependencies": {
"@types/lodash": "^4.14.118",
"fast-check": "^1.7.1",
"lodash": "^4.17.11",
"seedrandom": "^2.4.4"
},
"devDependencies": {
"ava": "^1.0.0-rc.2",
"parcel-bundler": "^1.10.3",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}