-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "sync-p",
"version": "1.3.1",
"description": "A tiny sync promise lib",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"test-browser": "karma start --single-run",
"coverage": "nyc --reporter=lcov --reporter=text-summary mocha",
"test-ci": "karma start karma.conf.ci.js --single-run",
"lint": "standard"
},
"author": "Alan Clarke <alan@qubit.com> (qubit.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/QubitProducts/sync-p.git"
},
"license": "UNLICENSED",
"devDependencies": {
"chai": "^4.2.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"sinon": "^9.0.3",
"standard": "^11.0.1",
"webpack": "^4.44.1"
},
"bugs": {
"url": "https://github.com/QubitProducts/sync-p/issues"
},
"homepage": "https://github.com/QubitProducts/sync-p#readme",
"keywords": [
"promise",
"synchronous",
"async"
]
}