-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.99 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.99 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
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
{
"name": "tai64",
"version": "1.0.0",
"description": "TypeScript implementation of TAI64 timestamps for Node.js and the browser",
"keywords": [
"tai",
"tai64",
"date",
"time",
"timestamp",
"typescript"
],
"author": "hl2",
"license": "MIT",
"homepage": "https://github.com/hl2/tai64#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hl2/tai64.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib .nyc_output coverage",
"lint:src": "tslint -p tsconfig.json",
"lint:test": "tslint -p test/tsconfig.json",
"format": "prettier --write '{src,test}/**/*.{ts,json}' '*.{md,json}'",
"build": "tsc",
"test": "nyc mocha 'test/**/*.test.ts'",
"test:ci": "nyc --reporter=lcov mocha 'test/**/*.test.ts' && cat coverage/lcov.info | coveralls",
"prebuild": "run-s clean lint:src",
"pretest": "run-s clean lint:test",
"pretest:ci": "run-s clean lint:test",
"prepack": "run-s build",
"preversion": "run-s build test"
},
"dependencies": {
"@types/long": "4.0.0",
"@types/node": "10.12.18",
"long": "4.0.0"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.5",
"chai": "4.2.0",
"coveralls": "3.0.2",
"husky": "1.2.1",
"lint-staged": "8.1.0",
"mocha": "5.2.0",
"npm-run-all": "4.1.5",
"nyc": "13.1.0",
"prettier": "1.15.3",
"rimraf": "2.6.2",
"ts-node": "7.0.1",
"tslint": "5.12.0",
"tslint-config-prettier": "1.17.0",
"typescript": "3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts"
],
"require": [
"ts-node/register"
]
},
"prettier": {
"trailingComma": "es5"
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write",
"git add"
]
}
}