forked from jmcneese/libnoise.js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.66 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
56
{
"name": "libnoise-ts",
"version": "0.1.1",
"description": "A port of libnoise, modernised and ported to TypeScript",
"main": "index.js",
"scripts": {
"debug": "npm run ts-node -- src/index.ts",
"ts-node": "ts-node -r tsconfig-paths/register --project scripts/tsconfig.json",
"build": "npm run ts-node -- scripts/build.ts",
"build:clean": "npm run ts-node -- scripts/build--clean.ts",
"lint": "tslint --project .",
"test": "npm run ts-node -- scripts/test.ts",
"test:coverage": "nyc report --reporter=\"text\" && nyc report --reporter=\"text-summary\"",
"simulate-build": "npm run ts-node -- scripts/simulate-build.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peabnuts123/libnoise.ts.git"
},
"keywords": [
"typescript",
"libnoise",
"perlin",
"noise"
],
"author": "peabnuts123",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/peabnuts123/libnoise.ts/issues"
},
"homepage": "https://github.com/peabnuts123/libnoise.ts#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.5.0",
"@types/yargs": "^12.0.8",
"chai": "^4.2.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"npm-registry": "^0.1.13",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"semver": "^5.6.0",
"source-map-support": "^0.5.9",
"strip-json-comments": "^2.0.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"yargs": "^12.0.5"
},
"dependencies": {}
}