Skip to content

Commit f42d3de

Browse files
committed
chore: Drop CI with node.js 6
1 parent d67df94 commit f42d3de

File tree

2 files changed

+25
-31
lines changed

2 files changed

+25
-31
lines changed

.travis.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
sudo: false
21
language: node_js
3-
cache:
4-
directories:
5-
- ~/.npm
62
notifications:
73
email: false
84
node_js:
9-
- '12'
10-
- '10'
5+
- node
6+
- lts/*
117
- '8'
12-
- '6'
138
after_success:
149
- npx semantic-release
1510
branches:

package.json

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,32 @@
11
{
22
"name": "asynctaskqueue.js",
3+
"version": "0.0.0-development",
34
"description": "JavaScript worker queue to execute tasks asynchronously, based on (deferred) promises",
45
"homepage": "https://github.com/prantlf/asynctaskqueue.js",
5-
"keywords": [
6-
"worker",
7-
"queue",
8-
"asynchronous",
9-
"server",
10-
"client",
11-
"browser"
12-
],
136
"author": "Ferdinand Prantl <prantlf@gmail.com>",
147
"repository": {
158
"type": "git",
169
"url": "https://github.com/prantlf/asynctaskqueue.js.git"
1710
},
11+
"licenses": [
12+
{
13+
"type": "MIT",
14+
"url": "https://raw.github.com/prantlf/asynctaskqueue.js/master/LICENSE"
15+
}
16+
],
1817
"main": "asynctaskqueue.js",
19-
"version": "0.0.0-development",
18+
"files": [
19+
"asynctaskqueue.js",
20+
"asynctaskqueue-min.js"
21+
],
2022
"engines": {
2123
"node": ">=6"
2224
},
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+
},
2330
"dependencies": {
2431
"underscore": "1.9.1",
2532
"jquery": "3.4.1"
@@ -29,20 +36,12 @@
2936
"phantomjs": "2.1.7",
3037
"uglify-js": "3.6.0"
3138
},
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"
4746
]
4847
}

0 commit comments

Comments
 (0)