-
Notifications
You must be signed in to change notification settings - Fork 198
/
package.json
96 lines (96 loc) · 2.03 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "paralleljs",
"version": "1.1.0",
"description": "parallel.js enables easy multi-thread processing in javascript",
"author": "Adam Savitzky <[email protected]>",
"contributors": [
"Sebastian Mayr <[email protected]> (http://s3bmaster.blogspot.co.at/)",
"Amila Welihinda <[email protected]> (https://amilajack.com/)"
],
"license": "MIT",
"main": "lib/parallel.js",
"scripts": {
"lint": "eslint lib",
"test": "jasmine-node --verbose test/specs",
"build": "echo 'No need to build - but we need the command to let CI pass'"
},
"repository": {
"type": "git",
"url": "https://github.com/parallel-js/parallel.js.git"
},
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"parallel",
"spawn",
"map",
"thread",
"parallel.js",
"workers",
"webworkers"
],
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"babel-eslint": "^10.1.0",
"eslint": "7.15.0",
"eslint-config-bliss": "5.0.0",
"is-ci": "^3.0.1",
"jasmine-node": "^3.0.0",
"q": "^1.5.1"
},
"browser": {
"child_process": false
},
"engines": {
"node": ">=v14.18.1"
},
"testling": {
"scripts": [
"lib/parallel.js",
"test/jasmine/jasmine.js",
"test/jasmine/jasmine.tap_reporter.js",
"test/specs/*.js",
"test/runner.js"
],
"browsers": [
"ie/9..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"chrome": "58",
"node": "10"
}
}
]
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "bliss",
"env": {
"jest": false,
"jasmine": true,
"browser": true
}
},
"renovate": {
"extends": [
"bliss"
]
}
}