-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "higlass-register",
"version": "0.3.0",
"description": "HiGlass helper tool for registering pluggable tracks",
"author": "Fritz Lekschas",
"keywords": [
"HiGlass",
"Track",
"Register",
"Helper"
],
"license": "MIT",
"contributors": [
{
"name": "Fritz Lekschas",
"url": "http://github.com/flekschas"
}
],
"repository": {
"type": "git",
"url": "git://github.com/higlass/higlass-register.git"
},
"main": "src/index.js",
"unpkg": "dist/higlass-register.min.js",
"files": [
"dist"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.13"
},
"scripts": {
"build": "webpack --mode production",
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist"
}
}