-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
{
"name": "notification-queue",
"version": "1.0.1",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "run-p build:*",
"build:lib": "tsc --module commonjs --outDir lib",
"build:es": "tsc --module es6 --outDir es",
"clean": "rm -rf es lib;",
"docs": "rm -rf docs && typedoc --plugin typedoc-plugin-example-tag --plugin typedoc-plugin-markdown src/index.ts",
"prepare": "run-s clean build",
"test": "jest",
"coverage": "jest --coverage"
},
"files": [
"lib",
"es"
],
"license": "MIT",
"dependencies": {
"asap": "^2.0.6"
},
"devDependencies": {
"@types/asap": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^14.0.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.5.6",
"typedoc": "^0.21.2",
"typedoc-plugin-example-tag": "^1.0.2",
"typedoc-plugin-markdown": "^3.8.1",
"typescript": "^4.2.4"
},
"repository": "https://github.com/nilennoct/notification-queue.git",
"author": "nilennoct <hfdjf007@163.com>"
}