-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.17 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
{
"name": "vaoc-map-generator",
"version": "1.0.0",
"description": "map generator for Vaoc",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run lint && tsc --emitDeclarationOnly && babel src --out-dir dist --extensions \".ts,.tsx\"",
"rebuild": "npm run clean && npm run build",
"clean": "rm -rf ./dist",
"type-check": "tsc --noEmit",
"lint": "tslint src/*"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.49",
"seedrandom": "^2.4.3",
"simplex-noise": "^2.4.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.49",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.49",
"@babel/plugin-transform-runtime": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-typescript": "^7.0.0-beta.49",
"babel-plugin-module-resolver": "^3.1.1",
"tslint": "^5.10.0",
"typescript": "^2.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Airyworks/vaoc-map-generator.git"
},
"author": "Illyrix@Airyworks",
"license": "MIT"
}