-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 887 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
36
37
38
39
40
41
{
"name": "a1-ssg",
"version": "1.0.0",
"description": "Static Site Generator - OSD600",
"main": "src/index.js",
"bin": {
"a1-ssg": "src/index.js"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"prettier": "prettier --write ./src/**/*.js",
"lint": "eslint ./src/**/*.js",
"lint:fix": "npm run lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjung99/a1-ssg.git"
},
"keywords": [
"node",
"ssg",
"javascript",
"npm"
],
"author": "Jiyun Jung",
"license": "MIT",
"bugs": {
"url": "https://github.com/jjung99/a1-ssg/issues"
},
"homepage": "https://github.com/jjung99/a1-ssg#readme",
"dependencies": {
"jsonfile": "^6.1.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"eslint": "^8.1.0",
"jest": "^27.3.1",
"prettier": "2.4.1"
}
}