This repository was archived by the owner on Aug 18, 2021. It is now read-only.
File tree 2 files changed +26
-5
lines changed
2 files changed +26
-5
lines changed Original file line number Diff line number Diff line change
1
+ sudo : false
2
+ language : node_js
3
+ cache :
4
+ directories :
5
+ - node_modules
6
+ notifications :
7
+ email : false
8
+ node_js :
9
+ - ' 4'
10
+ - ' 5'
11
+ - ' 6'
12
+ before_install :
13
+ - npm i -g npm@^2.0.0
14
+ before_script :
15
+ - npm prune
16
+ after_success :
17
+ - npm run semantic-release
18
+ branches :
19
+ except :
20
+ - /^v\d+\.\d+\.\d+$/
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " serverless-snyk" ,
3
- "version" : " 0.1.0" ,
4
3
"description" : " Serverless plugin for securing your dependencies with Snyk" ,
5
4
"main" : " index.js" ,
6
5
"repository" : {
7
6
"type" : " git" ,
8
- "url" : " git+ https://github.com/Snyk/serverless-snyk.git"
7
+ "url" : " https://github.com/Snyk/serverless-snyk.git"
9
8
},
10
9
"scripts" : {
11
10
"lint" : " jscs index.js" ,
12
- "test" : " snyk test"
11
+ "test" : " snyk test" ,
12
+ "semantic-release" : " semantic-release pre && npm publish && semantic-release post"
13
13
},
14
14
"keywords" : [
15
15
" security" ,
22
22
},
23
23
"homepage" : " https://github.com/Snyk/serverless-snyk#readme" ,
24
24
"devDependencies" : {
25
- "jscs" : " ^3.0.7"
25
+ "jscs" : " ^3.0.7" ,
26
+ "semantic-release" : " ^4.3.5"
26
27
},
27
28
"dependencies" : {
28
29
"bluebird" : " ^3.4.6" ,
29
30
"chalk" : " ^1.1.3" ,
30
31
"dotenv" : " ^2.0.0" ,
31
32
"snyk" : " ^1.19.1"
32
33
}
33
- }
34
+ }
You can’t perform that action at this time.
0 commit comments