-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.42 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.42 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
{
"name": "performance-node",
"version": "0.0.0-semantically-released",
"description": "Performance (User Timing API) for Node.js",
"main": "dist/index.js",
"scripts": {
"build": "iopipe-scripts build --ignore __mocks__/*,*.test.js",
"commit": "iopipe-scripts commit",
"lint": "iopipe-scripts lint",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"release": "iopipe-scripts release",
"test": "iopipe-scripts test",
"validate": "iopipe-scripts validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iopipe/performance-node.git"
},
"files": [
"dist/"
],
"keywords": [
"performance",
"usertiming",
"user-timing",
"hrtime",
"metrics"
],
"author": "IOpipe <dev@iopipe.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iopipe/performance-node/issues"
},
"homepage": "https://github.com/iopipe/performance-node#readme",
"devDependencies": {
"@iopipe/scripts": "^1.4.1",
"delay": "^2.0.0",
"lodash": "^4.17.4",
"pre-commit": "^1.2.2"
},
"dependencies": {},
"engines": {
"node": ">=4.3.2"
},
"pre-commit": [
"validate"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"dist"
]
},
"eslintConfig": {
"extends": "./node_modules/@iopipe/scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage"
]
}