This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.26 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
{
"name": "lineup-element",
"description": "LineUp is an interactive technique designed to create, visualize and explore rankings of items based on a set of heterogeneous attributes.",
"homepage": "https://github.com/datavisyn/lineup-element",
"version": "1.0.0-beta.0",
"flat": true,
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/datavisyn/lineup-element/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/lineup-element.git"
},
"files": [
"lineup-element.html",
"bower.json",
"polymer.json",
"src/**/*.html",
"src/**/*.css"
],
"scripts": {
"clean": "rimraf build dist",
"compile": "tsc",
"lint": "tslint --project tsconfig.json -c tslint.json",
"prebuild": "npm run clean && (node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test)",
"pretest": "npm run clean && npm run compile",
"test": "echo no tests",
"posttest": "npm run lint",
"test:watch": "karma start --autoWatch=true --singleRun=false",
"build:dev": "webpack -d --devtool source-map",
"watch": "webpack --watch -d --devtool source-map",
"build": "webpack -p",
"start": "polymer serve",
"preversion": "npm test",
"prepublishOnly": "npm run build",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:pre": "npm version prerelease && npm publish --tag=next && git push --follow-tags"
},
"devDependencies": {
"bower": "^1.8.2",
"cache-loader": "^1.2.2",
"copy-webpack-plugin": "^4.5.0",
"fork-ts-checker-webpack-plugin": "^0.4.0",
"lineupjs": "^3.0.1-beta.13",
"mkdirp": "^0.5.1",
"polymer-cli": "^1.6.0",
"raw-loader": "^1.0.0-beta.0",
"rimraf": "^2.6.2",
"thread-loader": "^1.1.5",
"ts-loader": "^4.0.0",
"tslint": "^5.9.1",
"tslint-consistent-codestyle": "^1.11.1",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^2.7.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10"
},
"dependencies": {}
}