-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1019 Bytes
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
{
"name": "@yosgo/swapjs",
"private": false,
"description": "SWAP utility libraries",
"version": "0.1.14",
"main": "./build/index.js",
"types": "./index.d.ts",
"repository": "yosgo-open-source/swapjs",
"files": [
"build",
"types",
"index.d.ts"
],
"scripts": {
"build": "yarn clear && tsc",
"watch": "yarn clear && tsc --watch",
"clear": "rimraf ./build",
"test": "mocha ./src/**/__tests__/*.js --ignore node_modules",
"test-coverage": "nyc --reporter=text mocha ./src/**/__tests__/*.js --ignore node_modules",
"docs": "typedoc src/index.ts",
"doc-deploy": "yarn docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""
},
"license": "MIT",
"devDependencies": {
"@yosgo/tsconfig": "^0.0.3",
"gh-pages": "^3.2.3",
"mocha": "^9.0.1",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.2",
"typedoc": "^0.21.6",
"typescript": "^4.3.4"
},
"dependencies": {},
"pre-commit": [
"test"
]
}