-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "@ibm/cpc",
"version": "1.0.5",
"main": "src/index.ts",
"types": "dist/index",
"license": "GPL-3.0",
"author": "IBM Research, Visual AI Lab, Daniel Karl I. Weidele",
"scripts": {
"clean_dist": "rm -rf dist",
"lint": "tslint -p . -c tslint.json",
"copy_static": "mkdirp ./dist/src/css && cp -r ./src/css ./dist/src && mkdirp ./dist/demo/src/css && cp -r ./demo/src/css ./dist/demo/src",
"build": "npm-run-all clean_dist copy_static tsc wp",
"pack": "npm pack",
"build:package": "npm-run-all clean_dist copy_static tsc wp pack",
"start": "npm run build && webpack-dev-server --host 0.0.0.0 --disable-host-check --open",
"tsc": "tsc",
"wp": "webpack --mode development",
"ww": "webpack --watch --mode development",
"prepublishOnly": "npm run build",
"preversion": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"d3": "^5.9.2",
"jquery": "^3.5.0"
},
"devDependencies": {
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"ts-loader": "^5.3.3",
"typescript": "^3.4.4",
"webpack-dev-server": "^3.3.1",
"html-webpack-plugin": "^3.2.0",
"npm-run-all": "^4.0.2",
"mkdirp": "^0.5.1",
"html-loader": "^0.5.5",
"style-loader": "^1.1.3",
"css-loader": "^3.4.2",
"clean-webpack-plugin": "^3.0.0"
},
"files": [
"dist/src/**/*"
],
"repository": "git://github.com/IBM/conditional-parallel-coordinates.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com/IBM"
}
}