forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "@expo/json-file",
"version": "8.2.5",
"description": "A module for reading, writing, and manipulating JSON files",
"main": "build/JsonFile.js",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepare": "yarn build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/json-file"
},
"keywords": [
"json"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/master/packages/json-file#readme",
"files": [
"build"
],
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@babel/code-frame": "^7.0.0-beta.44",
"fs-extra": "^8.0.1",
"json5": "^1.0.1",
"lodash": "^4.17.15",
"util.promisify": "^1.0.0",
"write-file-atomic": "^2.3.0"
},
"devDependencies": {
"@expo/babel-preset-cli": "^0.2.5",
"@types/babel__code-frame": "^7.0.1",
"@types/fs-extra": "^7.0.0",
"@types/jest": "^24.0.13",
"@types/json5": "^0.0.30",
"@types/lodash": "^4.14.135",
"@types/write-file-atomic": "^2.1.1",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"prettier": "^1.7.4"
},
"publishConfig": {
"access": "public"
}
}