-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.2 KB
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
{
"name": "stellaris-to-json",
"version": "1.0.2",
"description": "A Node.js library for parsing and transforming Stellaris data files to JSON.",
"keywords": [
"stellaris"
],
"repository": "[email protected]:Wedvich/stellaris-to-json.git",
"author": "Martin Wedvich",
"engines": {
"node": ">= 10"
},
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"build": "tsc --pretty && webpack",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"prettier": "prettier --write '**/*.{js,ts,tsx,json}'",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.19",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"husky": "^5.0.6",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"pinst": "^2.1.1",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0",
"webpack-merge": "^5.7.3"
}
}