-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.62 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.62 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
{
"name": "tmer",
"version": "1.4.7",
"description": "Simple timer for Node.js and browser",
"keywords": [
"benchmark",
"benchmarking",
"hrtime",
"profile",
"time",
"timeEnd",
"timeStart",
"timer"
],
"bugs": {
"url": "https://github.com/rferro/tmer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rferro/tmer.git"
},
"license": "MIT",
"author": "Ricardo Ferro <ricardo.ferro@gmail.com>",
"files": [
"lib",
"dist"
],
"main": "lib",
"scripts": {
"build": "parcel build --no-source-maps --global tmer -o dist/tmer.min.js lib/index.js",
"deps-check": "npx npm-check --skip-unused --update",
"lint": "standard | snazzy",
"release": "standard-version",
"sort-package-json": "npx sort-package-json",
"test": "tap lib/index.spec.js",
"prettier": "prettier-standard 'lib/**/*.js'"
},
"devDependencies": {
"@commitlint/cli": "^7.1.1",
"@commitlint/config-conventional": "^7.1.1",
"browser-process-hrtime": "^0.1.2",
"husky": "^0.14.3",
"normat": "^1.2.3",
"parcel-bundler": "^1.9.7",
"prettier-standard": "^8.0.1",
"snazzy": "^8.0.0",
"standard": "^11.0.1",
"standard-version": "^4.4.0",
"tap": "^14.6.9"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"standard": {
"env": [
"jest"
],
"globals": [],
"ignore": []
},
"unpkg": "dist/tmer.min.js"
}