-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
45 lines (45 loc) · 994 Bytes
/
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
{
"name": "@mapbox/martini",
"version": "0.2.0",
"description": "A JavaScript library for real-time terrain mesh generation",
"main": "martini.js",
"unpkg": "martini.min.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"pretest": "eslint index.js bench.js test",
"test": "node -r esm test/test.js",
"bench": "node -r esm bench.js",
"build": "rollup -c",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"terrain",
"rtin",
"mesh",
"3d",
"webgl"
],
"author": "Vladimir Agafonkin",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-terser": "^0.1.0",
"eslint": "^8.26.0",
"eslint-config-mourner": "^3.0.0",
"esm": "^3.2.25",
"pngjs": "^6.0.0",
"rollup": "^3.2.3",
"tape": "^5.6.1"
},
"files": [
"index.js",
"martini.js",
"martini.min.js"
],
"eslintConfig": {
"extends": "mourner",
"rules": {
"no-use-before-define": 0
}
}
}