-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "squeaker",
"version": "0.0.1-alpha.7",
"type": "module",
"description": "A tiny (but advanced) simplex noise module",
"repository": {
"type": "git",
"url": "git+https://github.com/illumincrotty/squeaker.git"
},
"homepage": "https://github.com/illumincrotty/squeaker#readme",
"bugs": {
"url": "https://github.com/illumincrotty/squeaker/issues"
},
"author": "Brian Crotty",
"license": "MIT",
"main": "./dist/squeaker.cjs",
"module": "./dist/squeaker.js",
"exports": "./dist/squeaker.modern.js",
"typings": "./dist/squeaker.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"types",
"noise",
"perlin",
"perlin noise",
"alea",
"random",
"simplex"
],
"scripts": {
"alphaBump": "pnpm version prerelease --preid alpha --git-tag-version",
"benchmark": "pnpm node --loader=ts-node/esm --experimental-specifier-resolution=node --trace-warnings ./benchmarking/benchmark.ts",
"build": "pnpm test && pnpm build:noTest",
"build:noTest": "microbundle --tsconfig .\\tsconfig.build.json",
"build:web": "vite build",
"ci": "c8 --reporter lcovonly pnpm test",
"coverage": "c8 --reporter lcov --reporter text --skip-full pnpm test",
"doc": "lehre --template-path ./template.cjs -d src --write",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --fix --ext .ts",
"preview": "vite preview",
"report": "c8 report --reporter lcovonly",
"serve": "vite serve",
"test": "ava"
},
"devDependencies": {
"@types/node": "^16.10.1",
"@types/ranjs": "^1.22.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"asm-noise": "^1.0.2",
"autoprefixer": "^10.3.6",
"ava": "^4.0.0-alpha.2",
"benny": "^3.6.15",
"c8": "^7.9.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-ava": "^12.0.0",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unicorn": "^35.0.0",
"lehre": "^1.5.0",
"microbundle": "^0.13.3",
"prettier": "^2.4.1",
"prettier-plugin-pkg": "^0.10.0",
"ranjs": "^1.23.2",
"source-map-support": "^0.5.20",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"vite": "^2.5.10"
},
"sideEffects": false,
"ava": {
"files": [
"test/**/*.test.ts",
"!test/util.ts"
],
"failFast": false,
"extensions": {
"ts": "module"
},
"environmentVariables": {
"TS_NODE_PROJECT": "tsconfig.test.json"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node",
"--no-warnings=ExperimentalWarning"
]
},
"source": "./src/squeaker.ts",
"minify": {
"compress": {
"drop_console": true,
"keep_fargs": false,
"passes": 5
}
}
}