-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 943 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 943 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
{
"name": "@tdajs/normal-form",
"version": "2.1.1",
"description": "Smith Normal Form and utility",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"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",
"doc": "typedoc src/index.ts",
"publish": "npm run build && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tdajs/normal-form.git"
},
"author": "Sushovan Majhi",
"license": "ISC",
"bugs": {
"url": "https://github.com/tdajs/normal-form/issues"
},
"homepage": "https://github.com/tdajs/normal-form#readme",
"devDependencies": {
"browserify": "^17.0.0",
"browserify-shim": "^3.8.14",
"typedoc": "^0.21.4",
"typescript": "^4.3.5",
"watch": "^1.0.2"
}
}