-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 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
49
50
51
{
"name": "zodiac-340-solver",
"version": "1.0.0",
"description": "",
"main": "main.js",
"directories": {
"lib": "lib"
},
"scripts": {
"start:dev": "node_modules/.bin/webpack-dev-server --entry ./src/index.ts --output-filename dist/bundle.js",
"build": "npx webpack --config=webpack.config.js",
"test": "jasmine-ts --config=jasmine.json",
"deploy": "./deploy.sh"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockjon/zodiac-340-solver.git"
},
"author": "Jonathan Block (www.jonathanblock.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/blockjon/zodiac-340-solver/issues"
},
"homepage": "https://github.com/blockjon/zodiac-340-solver#readme",
"devDependencies": {
"@types/bootstrap": "^4.5.0",
"@types/jasmine": "^3.5.12",
"jasmine": "^3.6.1",
"jasmine-spec-reporter": "^5.0.2",
"jasmine-ts": "^0.3.0",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.0"
},
"dependencies": {
"bootstrap": "^4.5.0",
"npm-watch": "^0.6.0"
}
}