-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 861 Bytes
/
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
{
"name": "joi-expo-push-token",
"version": "1.0.1",
"description": "Expo Push Token validation for Joi",
"main": "lib/index.js",
"repository": "https://github.com/dolsem/joi-expo-push-token",
"bugs": {
"url": "https://github.com/dolsem/joi-expo-push-token/issues"
},
"author": "Denis Semenenko <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"expo-server-sdk": "^3.1.0"
},
"keywords": [
"joi",
"extension",
"expo"
],
"devDependencies": {
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"joi": "^14.3.1"
},
"scripts": {
"test": "node_modules/jest-cli/bin/jest.js"
},
"jest": {
"testEnvironment": "node",
"notify": false,
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js",
"!__tests__"
]
}
}