-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "attitude",
"version": "0.2.5",
"description": "Spherical Rotations",
"keywords": [
"rotation"
],
"license": "MIT",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"unpkg": "dist/attitude.min.js",
"jsdelivr": "dist/attitude.min.js",
"homepage": "https://github.com/Fil/attitude",
"repository": {
"type": "git",
"url": "https://github.com/Fil/attitude.git"
},
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"author": {
"name": "Philippe Rivière",
"url": "https://github.com/Fil"
},
"scripts": {
"test": "mocha 'test/**/*-test.js' && eslint src test",
"prepublish": "rm -rf dist && yarn test && rollup -c",
"postpublish": "git push && git push --tags && zip -j dist/${npm_package_name}.zip -- LICENSE README.md dist/${npm_package_name}.js dist/${npm_package_name}.min.js"
},
"dependencies": {},
"sideEffects": false,
"devDependencies": {
"d3-geo": "3",
"eslint": "8",
"eslint-plugin-es5": "1",
"esm": "3",
"mocha": "9",
"package-preamble": "0.1",
"rollup": "2",
"rollup-plugin-terser": "7",
"terser": "^4.8.1",
"versor": "0.1"
},
"engines": {
"node": ">=12"
}
}