-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 989 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
32
33
34
{
"name": "@tdajs/simplicial-complex",
"version": "1.2.1",
"description": "JS package to manipulate simplicial complexes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"doc": "typedoc src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watch 'npm run build' ./src",
"bundle": "npm run build && browserify ./dist/index.js --s SC -o ./dist/min.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sushovan4/simplicial-complex.git"
},
"author": "Sushovan Majhi",
"license": "ISC",
"bugs": {
"url": "https://github.com/tdajs/simplicial-complex/issues"
},
"homepage": "https://github.com/tdajs/simplicial-complex#readme",
"dependencies": {
"@tdajs/normal-form": "^2.1.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"browserify-shim": "^3.8.14",
"typedoc": "^0.22.4",
"typescript": "^4.3.5",
"watch": "^0.13.0"
}
}