-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "cozy-device-helper",
"description": "To know more information about the device platform",
"version": "3.7.1",
"author": "Cozy",
"bugs": {
"url": "https://github.com/cozy/cozy-libs/issues"
},
"dependencies": {
"lodash": "^4.17.19"
},
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/core": "7.16.12",
"@types/react-native": "0.67.7",
"babel-jest": "26.6.3",
"babel-preset-cozy-app": "^2.8.1",
"jest": "26.6.3"
},
"files": [
"dist"
],
"homepage": "https://github.com/cozy/cozy-libs/blob/master/packages/cozy-device-helper/README.md",
"jest": {
"testURL": "http://localhost"
},
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-libs.git"
},
"scripts": {
"build": "yarn clean && yarn types && babel --extensions .ts,.tsx --ignore '**/*.spec.tsx','**/*.spec.ts' ./src -d ./dist",
"clean": "rm -rf ./dist",
"prepublishOnly": "yarn run build",
"start": "yarn build --watch",
"test": "jest src/**",
"types": "tsc -p tsconfig-build.json"
},
"types": "dist/index.d.ts"
}