-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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
{
"name": "words-hunter",
"version": "1.0.0",
"description": "Simple word game intended to help people learning English extend their vocabulary eventually",
"private": true,
"directories": {
"doc": "docs"
},
"scripts": {
"test": "npm run make-site && jest",
"serve": "npx http-server site",
"deploy": "npm run make-site; git branch -f gh-pages HEAD; git checkout gh-pages; git add -f site; git commit -m \"deploy\" --no-gpg-sign; git push origin `git subtree split --prefix site gh-pages`:gh-pages --force; git checkout main",
"make-js": "tsc",
"make-css": "sass src/styles/styles.scss site/styles.css",
"make-html": "mkdir -p site && cp -rf src/html/* site/",
"make-icons": "mkdir -p site/icons && cp -rf icons/* site/icons",
"make-site": "npm run make-icons && npm run make-html && npm run make-css && npm run make-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/queleok/words-hunter.git"
},
"keywords": [
"game",
"word-game",
"learning",
"english"
],
"author": "Leo K",
"license": "MIT",
"bugs": {
"url": "https://github.com/queleok/words-hunter/issues"
},
"homepage": "https://github.com/queleok/words-hunter#readme",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/jest-environment-puppeteer": "^5.0.3",
"http-server": "^14.1.1",
"jest": "^29.3.1",
"jest-puppeteer": "^6.2.0",
"puppeteer": "^19.4.1",
"sass": "^1.57.1",
"typescript": "^4.9.4"
},
"dependencies": {
"ts-jest": "^29.0.3"
}
}