-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.12 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
{
"name": "@eyedea-sockets/mailchimp",
"version": "0.1.5",
"description": "Syncano Socket to manage mailchimp subscriptions",
"repository": "https://github.com/eyedea-io/syncano-socket-mailchimp.git",
"public": true,
"author": "Eyedea <hello@eyedea.io> (https://eyedea.io)",
"license": "MIT",
"keywords": [
"syncano",
"eyedea",
"socket",
"mailchimp",
"newsletter",
"mail"
],
"peerDependencies": {
"@syncano/cli": "0.13.0-alpha.f6ea95d4"
},
"dependencies": {
"@syncano/core": "0.13.0-alpha.f6ea95d4",
"@syncano/validate": "0.13.0-alpha.f6ea95d4",
"axios": "^0.18.0"
},
"scripts": {
"build": "npm run build:src && npm run build:env",
"build:src": "sh ./bin/compile",
"build:env": "sh ./bin/compile-env",
"test": "npm-run-all --parallel test:lint test:audit test:unit",
"codecov": "codecov",
"test:unit": "NODE_ENV=test jest unit/.*\\.test\\.js",
"test:e2e": "NODE_ENV=test jest e2e/.*\\.test\\.js",
"test:audit": "npm audit",
"test:lint": "standard --fix"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@syncano/test": "0.13.0-alpha.f6ea95d4",
"@syncano/test-tools": "0.13.0-alpha.f6ea95d4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"codecov": "^3.0.2",
"jest": "^23.4.0",
"jest-mock-axios": "^2.1.11",
"npm-run-all": "^4.1.1",
"sinon": "^5.1.0",
"standard": "^10.0.3"
},
"jest": {
"testEnvironment": "node",
"globals": {
"ts-jest": {
"useBabelrc": true
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [],
"collectCoverage": true,
"collectCoverageFrom": [
".dist/**"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
},
"babel": {
"sourceMaps": "inline",
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
}
}