-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 759 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 759 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": "algebraify",
"version": "0.2.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Protowalker/algebraify"
},
"files": [
"/dist"
],
"scripts": {
"start": "tsc && node ./dist/index.js",
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.7",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
}
}