-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
108 lines (108 loc) · 2.96 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@iopipe/core",
"version": "0.0.0-semantically-released",
"description": "IOpipe Lambda Analytics & Tracing Agent",
"main": "dist/iopipe.js",
"scripts": {
"acceptance": "npm run acceptanceDeploy && npm run acceptanceLocal && node acceptance/invoke",
"acceptanceDeploy": "sls deploy",
"acceptanceLocalCallback": "sls invoke local -f callback",
"acceptanceLocalContextSuccess": "sls invoke local -f contextSuccess",
"acceptanceLocalContextDone": "sls invoke local -f contextDone",
"acceptanceLocal": "npm run acceptanceLocalCallback && npm run acceptanceLocalContextSuccess && npm run acceptanceLocalContextDone",
"build": "npm run webpack",
"commit": "iopipe-scripts commit",
"lint": "iopipe-scripts lint",
"jest": "iopipe-scripts test",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"release": "iopipe-scripts release",
"test": "npm run lint && npm run build && npm run jest && npm run testProjects",
"testProjects": "node util/testProjects",
"webpack": "webpack --progress --profile --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iopipe/iopipe.git"
},
"files": [
"dist/"
],
"keywords": [
"serverless",
"agent",
"analytics",
"metrics",
"telemetry",
"tracing",
"distributed tracing"
],
"author": "IOpipe <dev@iopipe.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iopipe/iopipe/issues"
},
"homepage": "https://github.com/iopipe/iopipe#readme",
"engines": {
"node": ">=4.3.2"
},
"devDependencies": {
"@iopipe/config": "^0.3.0",
"@iopipe/scripts": "^1.4.1",
"@iopipe/trace": "^0.3.0",
"aws-lambda-mock-context": "^3.0.0",
"aws-sdk": "^2.164.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.26.0",
"coveralls": "^3.0.4",
"cross-spawn": "^6.0.4",
"delay": "^2.0.0",
"flat": "^2.0.1",
"fs-extra": "^5.0.0",
"is-ip": "^2.0.0",
"istanbul": "^0.4.4",
"lodash": "^4.17.4",
"lodash.every": "^4.6.0",
"nock": "^9.4.1",
"pre-commit": "^1.2.2",
"serverless": "^1.37.1",
"webpack": "^3.2.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-node-externals": "^1.6.0",
"yargs": "^11.0.0"
},
"pre-commit": [
"test"
],
"jest": {
"testPathIgnorePatterns": [
"node_modules/",
"dist/",
"testProjects/"
]
},
"dependencies": {
"cosmiconfig": "^4",
"lodash.uniqby": "^4.7.0",
"simple-get": "^3.0.2"
},
"eslintConfig": {
"extends": "./node_modules/@iopipe/scripts/eslint.js",
"rules": {
"import/prefer-default-export": 0
}
},
"eslintIgnore": [
"coverage",
"node_modules",
"dist",
"iopipe.js",
"acceptance/node_modules",
"acceptance/iopipe.js",
"testProjects/*/node_modules",
"testProjects/*/iopipe.js"
]
}