forked from code-openness/sparql-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
{
"name": "sparql-visualizer",
"version": "0.0.1",
"description": "A typescript library to simplify visualization of SPARQL queries.",
"main": "dist/index.js",
"repository": "[email protected]:code-openness/sparql-visualizer.git",
"author": "code-openness",
"license": "GPL-3.0-only",
"private": false,
"scripts": {
"analyze": "webpack --config webpack/webpack.analyze.config.js",
"build": "webpack --config webpack/webpack.production.config.js",
"clean": "rimraf dist/ coverage/",
"lint": "npm-run-all --parallel lint:*",
"lint:ts": "tslint --project tsconfig.json --format stylish",
"prettier": "prettier --write '**/*.{ts,css,json,md,html}'",
"start": "webpack-dev-server --hot --config webpack/webpack.development.config.js",
"test": "jest --coverage"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier-tslint fix",
"git add"
],
"*.{css,json,md,html}": [
"prettier --write **/*.{css,json,md,html}",
"git add"
]
},
"devDependencies": {
"@types/jest": "24.0.15",
"@types/sinon": "7.0.13",
"css-loader": "^3.0.0",
"husky": "2.3.0",
"jest": "24.8.0",
"lint-staged": "8.1.7",
"node-sass": "^4.12.0",
"npm-run-all": "4.1.5",
"path": "0.12.7",
"prettier": "1.17.1",
"prettier-tslint": "0.4.2",
"rimraf": "2.6.3",
"sass-loader": "^7.1.0",
"sinon": "7.3.2",
"style-loader": "^0.23.1",
"ts-jest": "24.0.2",
"ts-loader": "6.0.4",
"tslint": "5.16.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "3.4.3",
"webpack": "4.32.2",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.5",
"webpack-dev-server": "3.4.1",
"webpack-merge": "4.2.1"
}
}