-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.01 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "playground-github-javascript-action",
"version": "1.0.0",
"description": "A playground for GitHub Actions with JavaScript.",
"author": "Roberto Achar <robertoachar@gmail.com>",
"homepage": "https://github.com/robertoachar/playground-github-javascript-action#readme",
"keywords": [
"node"
],
"main": "main.js",
"files": [
"src"
],
"scripts": {
"start": "node main.js",
"lint": "jest --config jest-eslint.config.js",
"lint:watch": "jest --config jest-eslint.config.js --watch",
"jest": "jest --config jest-test.config.js",
"jest:coverage": "jest --config jest-test.config.js --coverage",
"jest:watch": "jest --config jest-test.config.js --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"ntl": {
"descriptions": {
"start": "Start development mode",
"lint": "Run lint",
"lint:watch": "Start lint in watch mode",
"jest": "Run tests",
"jest:coverage": "Run tests with code coverage",
"jest:watch": "Start tests in watch mode",
"test": "Run lint + tests",
"test:watch": "Start lint + tests in watch mode",
"test:coverage": "Run lint + tests with code coverage"
}
},
"repository": {
"type": "git",
"url": "https://github.com/robertoachar/playground-github-javascript-action.git"
},
"bugs": {
"url": "https://github.com/robertoachar/playground-github-javascript-action/issues"
},
"dependencies": {
"@actions/exec": "1.0.3",
"esm": "3.2.25"
},
"devDependencies": {
"@babel/core": "7.8.3",
"@babel/preset-env": "7.8.3",
"@types/jest": "24.9.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-prettier": "3.1.2",
"jest": "24.9.0",
"jest-runner-eslint": "0.7.5",
"jest-watch-typeahead": "0.4.2",
"prettier": "1.19.1"
},
"license": "MIT"
}