-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.38 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
55
56
57
58
59
{
"name": "action-runner",
"description": "A simple command runner application",
"main": "built/switch.js",
"bin": {
"action": "./built/bin/main.js"
},
"scripts": {
"copy-txt": "run-script-os",
"copy-txt:win32": "copy .\\src\\spec\\test-action\\test.txt .\\built\\spec\\test-action\\test.txt",
"coverage": "nyc node_modules/jasmine/bin/jasmine.js",
"test": "npm run copy-txt & node node_modules/jasmine/bin/jasmine.js",
"test-full": "tsc & npm run test & npm run coverage"
},
"author": "Jeremy Overman",
"repository": {
"type": "git",
"url": "https://github.com/jeremyoverman/action-runner"
},
"license": "MIT",
"release": {
"verifyConditions": {
"path": "./verifyConditions.js"
},
"analyzeCommits": {
"releaseRules": [
{ "type": "docs", "release": "patch" }
]
}
},
"nyc": {
"all": true,
"include": [
"built/**/*.js",
"src/**/*.ts"
],
"reporter": [
"text-summary",
"html"
],
"exclude": [
"**/*.spec.js"
]
},
"devDependencies": {
"@types/jasmine": "^2.6.0",
"@types/node": "^8.0.31",
"chai": "^4.1.2",
"istanbul": "^1.1.0-alpha.1",
"jasmine": "^2.8.0",
"nyc": "^11.2.1",
"run-script-os": "^1.0.2",
"semantic-release": "^8.2.0",
"source-map-support": "^0.4.18"
},
"dependencies": {
"typescript": "^2.5.3"
}
}