-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "@hscmap/fits",
"version": "2.1.1",
"description": "fits (Flexible Image Transport System) reader module",
"main": "build/dist/index.js",
"types": "build/dist/types/index.d.ts",
"scripts": {
"prepare": "webpack --config ./build/webpack.config.js --context build --mode production",
"example": "webpack --config ./example/webpack.config.js --context example --mode production",
"example-server": "webpack-dev-server --config ./example/webpack.config.js --context example --mode development",
"gh-pages": "npm run example && gh-pages -d example/dist"
},
"files": [
"build/dist"
],
"keywords": [
"fits",
"astronomy"
],
"author": "Koike Michitro",
"license": "MIT",
"dependencies": {
"es6-promise": "^4.2.5",
"gzip-js": "^0.3.2"
},
"devDependencies": {
"emcc-loader": "0.0.3",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^5.3.3",
"typescript": "^3.2.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-node-externals": "^1.7.2",
"worker-loader": "^2.0.0"
},
"repository": "github:michitaro/fits"
}