-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 922 Bytes
/
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
{
"name": "calculus-algorithms",
"version": "0.0.2",
"repository": "[email protected]:RohitSingh107/calculus-algorithms.git",
"author": "Rohit Singh <[email protected]>",
"license": "MIT",
"scripts": {
"compile": "rm -rf dist/lib && tsc && tsc --build tsconfig.es5.json",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'"
},
"typedocOptions": {
"entryPoints": [
"src/index.ts"
],
"out": "docs"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.13",
"typedoc-github-wiki-theme": "^1.0.1",
"typedoc-plugin-markdown": "^3.13.6",
"typedoc-theme-category": "^1.0.7",
"typedoc-theme-hierarchy": "^3.0.0",
"typescript": "^4.7.4"
}
}