-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
{
"name": "@hscmap/healpix",
"version": "1.4.11",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"standalone/dist"
],
"scripts": {
"prepare": "tsc ; npm run standalone",
"test": "echo \"to test, do 'npm run my-test'\"",
"my-test": "./.venv/bin/python spec/generate-testcase.py > spec/testcase.json && ts-node spec/test.ts",
"build-example": "cd docs/example && npm install && npm run build",
"typedoc": "typedoc --out ./docs/example/dist/typedoc ./src/index.ts",
"standalone": "cd standalone && webpack --mode production --config ./webpack.config.js",
"gh-pages": "rm -rf ./docs/example/dist && npm run build-example && npm run typedoc && touch ./docs/example/dist/.nojekyll && gh-pages --dotfiles -d ./docs/example/dist"
},
"keywords": [
"healpix",
"javascript",
"typescript"
],
"author": "Koike Michitaro",
"devDependencies": {
"@types/lodash": "^4.14.191",
"copy-webpack-plugin": "^11.0.0",
"gh-pages": "^5.0.0",
"lodash": "^4",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.25",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"repository": "github:michitaro/healpix",
"license": "MIT"
}