-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.85 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
{
"name": "cwl-svg",
"repository": {
"type": "git",
"url": "https://github.com/rabix/cwl-svg"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"author": "Ivan Batic <[email protected]> (http://github.com/ivanbatic)",
"description": "A library for generating an interactive SVG visualization of CWL workflows",
"version": "2.1.14",
"scripts": {
"build": "rm -rf dist && copyfiles \"./src/assets/**/*\" \"./src/**/*.scss\" ./package-lock.json ./package.json dist && npx tsc",
"webpack:watch": "node_modules/.bin/webpack --watch",
"webdriver:update": "./node_modules/.bin/webdriver-manager update",
"webdriver:start": "./node_modules/.bin/webdriver-manager start",
"pretest": "npm run build && npx tsc -p tsconfig.test.json",
"watch:tests": "tsc -p tsconfig.test.json --watch",
"test": "npx protractor protractor.config.js",
"start": "npx webpack-dev-server --no-watch",
"ci": "npm run test",
"release:tag": "standard-version -a -t ''"
},
"dependencies": {
"core-js": "^2.5.1"
},
"peerDependencies": {
"cwlts": "^1.20.1"
},
"devDependencies": {
"@types/core-js": "^0.9.43",
"@types/jasmine": "^2.6.3",
"@types/node": "^8.0.50",
"@types/webpack": "^3.8.0",
"@types/webpack-dev-server": "^2.9.1",
"copyfiles": "^2.4.1",
"css-loader": "^0.28.7",
"cwlts": "^1.20.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"jasmine": "^2.8.0",
"json-loader": "^0.5.7",
"node-sass": "^4.14.1",
"protractor": "^5.4.4",
"protractor-webpack": "^1.1.0",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.3",
"standard-version": "^9.5.0",
"style-loader": "^0.19.0",
"ts-loader": "^2.3.7",
"typescript": "^2.6.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}