-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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": "pts",
"version": "0.12.9",
"description": "pts",
"main": "./dist/index",
"types": "./dist/index.d.ts",
"scripts": {
"start": "tsup --config tsup.browser.js --watch",
"build": "npm run build-module && npm run build-browser",
"build-module": "tsup --config tsup.module.js",
"build-browser": "tsup --config tsup.browser.js && tsup --config tsup.min.js",
"test": "mocha --require ts-node/register --reporter dot --file src/test/*.spec.ts",
"test:auto": "mocha --opts mocha.opts --watch",
"docs": "typedoc --json docs/json/docs.json && python3 parse.py",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/williamngan/pts.git"
},
"author": "William Ngan",
"license": "Apache-2.0",
"devDependencies": {
"@stylistic/eslint-plugin": "^1.6.3",
"@testdeck/mocha": "^0.2.1",
"@types/dom-mediacapture-record": "^1.0.7",
"@types/mocha": "^9.1.1",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"chai": "^4.3.0",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"source-map": "^0.7.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"@nrwl/cli": "13.7.1"
},
"bugs": {
"url": "https://github.com/williamngan/pts/issues"
},
"homepage": "https://github.com/williamngan/pts"
}