-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "generalities",
"version": "2.1.1",
"description": "Common constants",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"ts": "tsc",
"serve:ts": "npx tsc --watch",
"compile": "npm run ts",
"test": "exit 0",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remithomas/generalities.git"
},
"keywords": [
"codes",
"common",
"constants",
"countries",
"es6",
"languages",
"typescript"
],
"author": "Remi Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/remithomas/generalities/issues"
},
"homepage": "https://github.com/remithomas/generalities#readme",
"devDependencies": {
"tslint": "^5.10.0",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"pre-push": "npm run validate"
}
}
}