-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.94 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
{
"name": "@sockets/user-auth",
"version": "1.1.2",
"public": true,
"description": "Syncano Socket for basic user authentication and registration",
"author": "Syncano",
"repository": "https://github.com/Syncano/syncano-socket-user-auth.git",
"license": "MIT",
"peerDependencies": {
"@syncano/cli": "0.13.0-alpha.f6ea95d4"
},
"dependencies": {
"@syncano/core": "0.13.0-alpha.f6ea95d4",
"fb": "^2.0.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:e2e",
"test:e2e-single": "NODE_ENV=test jest",
"test:e2e": "npm run test:e2e-single -- test",
"test:e2e:debug": "npm run test:e2e-single -- 'test' --inspect-brk",
"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/cli": "0.13.0-alpha.f6ea95d4",
"@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",
"jest": "^23.1.0",
"npm-run-all": "^4.1.1",
"sinon": "^5.1.0",
"standard": "^10.0.3"
},
"jest": {
"globals": {
"ts-jest": {
"useBabelrc": true
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/test/*.test.(ts|tsx|js)"
],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
}
}