generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.56 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
49
50
51
52
53
54
{
"name": "sitecite",
"version": "1.0.0",
"description": "Check if your cited website source is still up",
"main": "dist/index.min.js",
"source": "src/index.ts",
"scripts": {
"format:check": "prettier . --list-different",
"format": "prettier --write .",
"build": "microbundle --format cjs --target node --no-compress --no-sourcemap src/index.ts",
"build:watch": "microbundle watch --format cjs --target node --no-compress --no-sourcemap src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertsmit/sitecite.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/albertsmit/sitecite/issues"
},
"homepage": "https://github.com/albertsmit/sitecite#readme",
"devDependencies": {
"@actions/core": "^1.2.5",
"@actions/github": "^4.0.0",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.20",
"@types/node-fetch": "^2.5.8",
"@types/tmp": "^0.2.0",
"@vercel/ncc": "^0.27.0",
"babel-jest": "^26.6.3",
"eslint": "^7.22.0",
"husky": "^5.1.3",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.6.3",
"jsdom": "^16.5.1",
"microbundle": "^0.13.0",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run build"
}
}
}