This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
70 lines (70 loc) · 1.96 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
64
65
66
67
68
69
70
{
"name": "codesandbox",
"version": "1.1.14",
"description": "The CLI used for communicating with CodeSandbox",
"main": "lib/index.js",
"bin": {
"codesandbox": "./lib/index.js"
},
"author": "Ives van Hoorne",
"license": "MIT",
"scripts": {
"test": "npm run build && jest",
"test:watch": "jest --watch",
"build": "rimraf lib && tsc -p tsconfig.json",
"prepublish": "npm run -s build"
},
"repository": "CompuIves/codesandbox-cli",
"files": ["lib"],
"keywords": ["codesandbox", "cli", "editor"],
"dependencies": {
"axios": "^0.16.2",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"fs-extra": "^3.0.1",
"git-branch": "^1.0.0",
"git-repo-name": "^0.6.0",
"git-username": "^0.5.0",
"inquirer": "^3.1.1",
"lodash.omit": "^4.5.0",
"lodash.values": "^4.3.0",
"lz-string": "^1.4.4",
"ms": "^2.0.0",
"opn": "^5.1.0",
"ora": "^1.3.0",
"pacote": "^2.7.36",
"shortid": "^2.2.8",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/commander": "^2.9.1",
"@types/fs-extra": "^3.0.3",
"@types/inquirer": "^0.0.35",
"@types/jest": "^20.0.2",
"@types/lodash.omit": "^4.5.2",
"@types/lodash.values": "^4.3.2",
"@types/lz-string": "^1.3.32",
"@types/ms": "^0.7.29",
"@types/node": "^8.0.1",
"@types/opn": "^3.0.28",
"@types/ora": "^0.3.31",
"@types/shortid": "^0.0.29",
"@types/update-notifier": "^1.0.1",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.6",
"tslint": "^5.4.3",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.3.4"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"moduleFileExtensions": ["ts", "tsx", "js", "json"],
"testPathIgnorePatterns": ["<rootDir>/node_modules/", "<rootDir>/dist/"],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}