-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1012 Bytes
/
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
{
"name": "a-mazing-idle",
"version": "1.0.0",
"description": "A Mazing Idle - Incremental Game",
"main": "index.js",
"scripts": {
"build-cli": "browserify -p tsify -t [ babelify --extensions .ts ] src/index.ts > public/bundle.js",
"build-script": "node ./build.js > public/bundle.js",
"build": "npm run build-script",
"gogogo": "watchify ./build.js -o public/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ImGregHenry/A-Mazing-Idle.git"
},
"author": "imgreghenry",
"license": "MIT",
"bugs": {
"url": "https://github.com/ImGregHenry/A-Mazing-Idle/issues"
},
"dependencies": {},
"devDependencies": {
"@types/jquery": "^3.5.5",
"babel-plugin-module-resolver": "4.1.0",
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"gulp-cli": "^2.3.0",
"lodash": "4.17.20",
"tsify": "^2.0.2",
"typescript": "^2.0.3",
"priorityjs": "1.2.3",
"watchify": "4.0.0"
}
}