-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.3 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
{
"name": "osmi-cli",
"version": "1.3.0",
"description": "OsmiCSX ordinary boilerplate for React Native.",
"private": false,
"bin": {
"osmi": "bin/osmi",
"osmi-cli": "bin/osmi"
},
"preferGlobal": true,
"license": "MIT",
"repository": "OsmiCSX/osmi",
"homepage": "https://github.com/OsmiCSX/osmi",
"files": [
"boilerplate",
"src",
"bin",
"README.md",
"template.config.js"
],
"author": {
"name": "OsmiCSX",
"url": "https://github.com/OsmiCSX/osmicsx"
},
"scripts": {
"format": "prettier --write **/*.{js,json} && standard --fix",
"lint": "standard",
"test": "jest --passWithNoTests",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage"
},
"devEngines": {
"node": ">=12.x",
"npm": ">=5.x"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"gluegun": "latest",
"ramda": "^0.27.1",
"ramdasauce": "^2.1.3"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"jest": "^24.1.0",
"prettier": "^1.12.1",
"standard": "^12.0.1"
},
"jest": {
"testEnvironment": "node"
},
"standard": {
"env": [
"jest"
]
},
"prettier": {
"semi": false,
"singleQuote": false
}
}