This repository has been archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.5 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "lineup_remote",
"description": "LineUp demo application to explore datasets",
"homepage": "https://github.com/lineupjs/lineup_remote",
"version": "1.0.0-beta.2",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
"url": "https://www.sgratzl.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lineupjs/lineup_remote/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lineupjs/lineup_remote.git"
},
"private": true,
"scripts": {
"clean": "rimraf build dist src/**/*.map src/**/*.js tests/**/*.js tests/**/*.map",
"compile": "tsc",
"lint": "tslint --project tsconfig.json -c tslint.json && stylelint src/**/*.scss",
"docs": "typedoc --out ./build/docs/ src tsd.d.ts",
"prebuild": "npm run clean && npm run test",
"pretest": "npm run clean && npm run compile",
"test": "echo 'no tests'",
"posttest": "npm run lint",
"build:dev": "webpack --mode development --devtool source-map",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch --devtool source-map",
"start": "webpack-dev-server --mode development --devtool source-map",
"preversion": "npm test",
"release:major": "release-it major",
"release:minor": "release-it minor",
"release:patch": "release-it patch",
"release:pre": "release-it --preRelease=beta --npm.tag=next",
"predist": "npm run build",
"dist": "echo no test"
},
"devDependencies": {
"cache-loader": "^4.0.0",
"css-loader": "^3.0.0",
"extract-loader": "^3.1.0",
"file-loader": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"html-loader": "^0.5.5",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.7.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.12.0",
"raw-loader": "^3.0.0",
"release-it": "^12.3.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.8.0",
"thread-loader": "^2.1.2",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.3",
"tslint": "^5.17.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.17.7",
"typescript": "^3.5.2",
"url-loader": "^2.0.0",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2",
"workbox-webpack-plugin": "^4.3.1"
},
"dependencies": {
"lineupjs": "lineupjs/lineupjs#sgratzl/remote"
}
}