-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 800 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 800 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
37
38
39
{
"name": "@mapbox/martini",
"version": "0.2.0",
"type": "module",
"description": "A JavaScript library for real-time terrain mesh generation",
"main": "index.js",
"exports": "./index.js",
"types": "index.d.ts",
"scripts": {
"pretest": "eslint index.js bench.js test",
"test": "node test/test.js",
"bench": "node bench.js",
"prepublishOnly": "npm run test"
},
"keywords": [
"terrain",
"rtin",
"mesh",
"3d",
"webgl"
],
"author": "Vladimir Agafonkin",
"license": "ISC",
"devDependencies": {
"eslint": "^9.31.0",
"eslint-config-mourner": "^4.0.2",
"pngjs": "^7.0.0"
},
"files": [
"index.js",
"index.d.ts"
],
"eslintConfig": {
"extends": "mourner",
"rules": {
"no-use-before-define": 0
}
}
}