-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "@jiangshengdev/calcium",
"version": "1.0.0",
"description": "Data Structures in TypeScript.",
"main": "dist/calcium.cjs.js",
"module": "dist/calcium.esm.js",
"types": "dist/calcium.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/jiangshengdev/calcium.git",
"author": "Jiang Sheng <jiangshengdev@outlook.com>",
"license": "MIT",
"scripts": {
"build": "rollup --config",
"api": "tsc && api-extractor run --local --verbose",
"doc": "api-documenter markdown --input-folder temp --output-folder docs",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-jest": "^27.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"prettier": "^2.4.1",
"rollup": "^2.56.3",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
}
}