-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "unconditional",
"version": "1.0.0",
"description": "",
"main": "bundle/index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"build": "tsc",
"build:watch": "onchange 'src/**/*.ts' -- npm run build",
"view:coverage": "serve coverage/lcov-report",
"clean": "rm -rf coverage src/**/*.js src/**/*.map",
"bundle": "ncc build src/index.ts -o ./bundle -m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielbarker/Unconditional.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gabrielbarker/Unconditional/issues"
},
"homepage": "https://github.com/gabrielbarker/Unconditional#readme",
"dependencies": {
"@actions/core": "^1.2.5",
"@actions/github": "^4.0.0",
"taybl": "^1.2.0",
"tiny-glob": "^0.2.6"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/source-map-support": "^0.5.3",
"@vercel/ncc": "^0.23.0",
"codecov": "^3.7.2",
"jest": "^26.4.2",
"onchange": "^7.0.2",
"serve": "^11.3.2",
"source-map-support": "^0.5.19",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}