-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "thromise",
"version": "1.5.2",
"description": "Makes sync API great again",
"type": "module",
"main": "src/main/js/index.cjs",
"exports": {
".": {
"types": "./src/main/js/index.d.ts",
"require": "./src/main/js/index.cjs",
"import": "./src/main/js/index.mjs",
"default": "./src/main/js/index.mjs"
}
},
"module": "./src/main/js/index.mjs",
"types": "./src/main/js/index.d.ts",
"files": [
"src/main"
],
"scripts": {
"build": "exit 0",
"test": "concurrently 'npm:test:*'",
"test:lint": "eslint -c src/test/lint/.eslintrc.json --ext .mjs,.cjs src",
"test:unit": "c8 -r lcov -r text -o target/coverage -x src/test node --test-reporter=spec --experimental-specifier-resolution=node src/test/js/index.test.mjs",
"test:it": "node --test-reporter=spec --experimental-specifier-resolution=node src/test/js/index.it.test.mjs",
"test:dts": "tsd -f src/test/dts/index.test-d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/thromise.git"
},
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/qiwi/thromise/issues"
},
"homepage": "https://github.com/qiwi/thromise#readme",
"dependencies": {},
"devDependencies": {
"c8": "^10.0.0",
"concurrently": "^9.0.0",
"eslint": "^8.56.0",
"eslint-config-qiwi": "^2.1.3",
"tsd": "^0.31.0"
},
"keywords": [
"thromise",
"thromix",
"promise",
"sync"
]
}