-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.25 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": "@mithic/commons",
"version": "0.3.0",
"description": "Common utility components for mithic",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./maybeAsync": "./dist/async/maybe-async.js"
},
"files": [
"/dist"
],
"scripts": {
"prepublishOnly": "npm run clean && npm run build && npm test && npm run doc",
"clean": "rimraf coverage docs dist",
"prebuild": "npm run lint",
"build": "npm run tsc && npm run babel",
"lint": "eslint src --ext .ts",
"babel": "babel src -d dist -x '.ts' --root-mode upward",
"tsc": "tsc --project tsconfig.build.json",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:update": "npm run test -- -u",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andykswong/mithic.git"
},
"keywords": [
"mithic",
"typescript"
],
"author": "Andy K.S. Wong <andykswong@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andykswong/mithic/issues"
},
"homepage": "https://github.com/andykswong/mithic",
"dependencies": {
},
"devDependencies": {
"web-locks": "^0.0.8"
}
}