-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.45 KB
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
39
40
41
42
43
44
45
46
{
"name": "beziyay",
"version": "0.0.1",
"description": "line smoothing via efficient curve fitting",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.15",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"typescript": "^3.4.5"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts src/",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "jest",
"prepublishOnly": "npm test && npm run lint && npm run typecheck",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loc/beziyay.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/loc/beziyay/issues"
},
"homepage": "https://github.com/loc/beziyay#readme"
}