-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "magic-script-cli",
"description": "Magic Script Toolkit",
"version": "2.5.0",
"author": "Magic Leap",
"license": "Apache-2.0",
"bin": {
"magic-script": "./bin/magic-script.js"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --fix .",
"test": "jest -i --json --outputFile=coverage/coverage.json"
},
"bugs": "https://github.com/magic-script/magic-script-cli/issues",
"dependencies": {
"glob": "^7.1.3",
"hash-index": "^3.0.0",
"inquirer": "^6.3.1",
"react-native-rename": "github:magic-script/react-native-rename",
"which": "^1.3.1",
"yargs": "^12.0.2"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"semistandard": "^13.0.1"
},
"engines": {
"node": ">=12.10.0"
},
"files": [
"/bin",
"/lib",
"/commands",
"/template",
"/template_components",
"/template_multiplatform_components",
"/template_overlay_typescript",
"/template_overlay_typescript_components",
"/util"
],
"homepage": "https://github.com/magic-script/magic-script-cli",
"keywords": [
"magic-script"
],
"repository": "magic-script/magic-script-cli"
}