File tree Expand file tree Collapse file tree 2 files changed +25
-31
lines changed Expand file tree Collapse file tree 2 files changed +25
-31
lines changed Original file line number Diff line number Diff line change 1
- sudo : false
2
1
language : node_js
3
- cache :
4
- directories :
5
- - ~/.npm
6
2
notifications :
7
3
email : false
8
4
node_js :
9
- - ' 12 '
10
- - ' 10 '
5
+ - node
6
+ - lts/*
11
7
- ' 8'
12
- - ' 6'
13
8
after_success :
14
9
- npx semantic-release
15
10
branches :
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " asynctaskqueue.js" ,
3
+ "version" : " 0.0.0-development" ,
3
4
"description" : " JavaScript worker queue to execute tasks asynchronously, based on (deferred) promises" ,
4
5
"homepage" : " https://github.com/prantlf/asynctaskqueue.js" ,
5
- "keywords" : [
6
- " worker" ,
7
- " queue" ,
8
- " asynchronous" ,
9
- " server" ,
10
- " client" ,
11
- " browser"
12
- ],
13
6
"author" : " Ferdinand Prantl <prantlf@gmail.com>" ,
14
7
"repository" : {
15
8
"type" : " git" ,
16
9
"url" : " https://github.com/prantlf/asynctaskqueue.js.git"
17
10
},
11
+ "licenses" : [
12
+ {
13
+ "type" : " MIT" ,
14
+ "url" : " https://raw.github.com/prantlf/asynctaskqueue.js/master/LICENSE"
15
+ }
16
+ ],
18
17
"main" : " asynctaskqueue.js" ,
19
- "version" : " 0.0.0-development" ,
18
+ "files" : [
19
+ " asynctaskqueue.js" ,
20
+ " asynctaskqueue-min.js"
21
+ ],
20
22
"engines" : {
21
23
"node" : " >=6"
22
24
},
25
+ "scripts" : {
26
+ "test" : " phantomjs test/vendor/runner.js test/index.html?noglobals=true" ,
27
+ "build" : " uglifyjs asynctaskqueue.js -c \" evaluate=false\" --comments=\" / .*/\" -m --source-map -o asynctaskqueue-min.js" ,
28
+ "doc" : " docco asynctaskqueue.js"
29
+ },
23
30
"dependencies" : {
24
31
"underscore" : " 1.9.1" ,
25
32
"jquery" : " 3.4.1"
29
36
"phantomjs" : " 2.1.7" ,
30
37
"uglify-js" : " 3.6.0"
31
38
},
32
- "scripts" : {
33
- "test" : " phantomjs test/vendor/runner.js test/index.html?noglobals=true" ,
34
- "build" : " uglifyjs asynctaskqueue.js -c \" evaluate=false\" --comments=\" / .*/\" -m --source-map -o asynctaskqueue-min.js" ,
35
- "doc" : " docco asynctaskqueue.js"
36
- },
37
- "licenses" : [
38
- {
39
- "type" : " MIT" ,
40
- "url" : " https://raw.github.com/prantlf/asynctaskqueue.js/master/LICENSE"
41
- }
42
- ],
43
- "files" : [
44
- " asynctaskqueue.js" ,
45
- " asynctaskqueue-min.js" ,
46
- " LICENSE"
39
+ "keywords" : [
40
+ " worker" ,
41
+ " queue" ,
42
+ " asynchronous" ,
43
+ " server" ,
44
+ " client" ,
45
+ " browser"
47
46
]
48
47
}
You can’t perform that action at this time.
0 commit comments