-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
47
48
{
"name": "steg",
"author": "CU Boulder Game Dev Club",
"description": "A game of steganography",
"version": "1.0.0",
"private": true,
"license": "MIT",
"homepage": "https://github.com/CU-Boulder-Game-Dev/steg#readme",
"scripts": {
"clean": "rm -r dist",
"build": "webpack",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint --fix src --ext .js,.ts",
"watch": "webpack --watch",
"test": "jest"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.4.3",
"open": "^7.0.0",
"source-map": "^0.7.3",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CU-Boulder-Game-Dev/steg.git"
},
"bugs": {
"url": "https://github.com/CU-Boulder-Game-Dev/steg/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {}
}