-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 993 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
{
"name": "atom-karma-test-runner",
"main": "./lib/atom-karma-test-runner",
"version": "1.1.1",
"description": "Run karma tests from atom. No server required.",
"keywords": [
"karma",
"tests",
"jasmine"
],
"activationCommands": {
"atom-workspace": "atom-karma-test-runner:run"
},
"repository": "https://github.com/DianaSuvorova/atom-karma-test-runner",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"ansi-html-stream": "0.0.3"
},
"devDependencies": {
"eslint": "3.6.1",
"last-release-apm": "^1.3.1",
"semantic-release": "^8.0.0"
},
"scripts": {
"pregit:push": "git commit -am \"Prepare $npm_package_version release\"",
"git:push": "git push",
"apm:publish": "apm publish -t v$npm_package_version",
"semantic-release": "semantic-release pre && npm run git:push && semantic-release post && npm run apm:publish"
},
"release": {
"getLastRelease": "last-release-apm"
}
}