-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "synctasks",
"version": "0.3.4",
"description": "An explicitly non-A+ Promise library that resolves promises synchronously",
"author": "David de Regt <[email protected]>",
"scripts": {
"prepare": "tsc",
"test": "mocha -r ts-node/register test/*.ts",
"test:ci": "npm run test -- --reporter mocha-junit-reporter",
"test:web": "webpack --config test/support/webpack.config.js --mode=development",
"build": "npm run lint && tsc",
"lint": "eslint --config .eslintrc --ext .ts src test",
"lint:fix": "npm run lint -- --fix"
},
"main": "dist/SyncTasks.js",
"devDependencies": {
"@types/assert": "1.4.3",
"@types/mocha": "5.2.7",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
"awesome-typescript-loader": "5.2.1",
"eslint": "6.1.0",
"eslint-config-skype": "0.4.0",
"mocha": "10.1.0",
"mocha-junit-reporter": "1.23.1",
"ts-node": "8.3.0",
"typescript": "3.5.3",
"webpack": "4.39.2",
"webpack-cli": "3.3.12"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/SyncTasks"
},
"bugs": {
"url": "https://github.com/Microsoft/SyncTasks/issues"
},
"typings": "dist/SyncTasks.d.ts",
"typescript": {
"definition": "dist/SyncTasks.d.ts"
},
"keywords": [
"promises",
"synchronous"
],
"license": "MIT"
}