-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 1.82 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "coordinate-systems",
"version": "2.0.0",
"description": "Converts coordindates between cartesian, polar, radial, spherical, and cylindrical coords!",
"main": "src/index.js",
"files": [
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"test": "ava",
"format": "prettier-standard '{src,test,scripts}/**/*.{ts,tsx}'",
"lint": "standardx '{src,test,scripts}/**/*.{ts,tsx}' --fix"
},
"repository": {
"type": "git",
"url": "git@github:cdaringe/coordinate-systems.git"
},
"keywords": [
"coordinate",
"coordinates",
"system",
"systems",
"convert",
"converter",
"converts",
"polar",
"cartesian",
"radial",
"spherical",
"cylindrical"
],
"author": "cdaringe",
"license": "MIT",
"dependencies": {
"lodash": "^4"
},
"devDependencies": {
"@types/lodash": "^4.14.138",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"ava": "^2.4.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"prettier-standard": "^14.0.5",
"standardx": "^5.0.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test,scripts}/**/*.{ts,tsx}": [
"npm run format",
"npm run lint",
"git add"
]
},
"ava": {
"files": [
"test/**/test.ts"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"eslintConfig": {
"rules": {
"no-unused-vars": 0
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"ignore": [
"**/*.d.ts"
]
}
}