-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "npm-try-cli",
"version": "0.0.0-development",
"description": "Quickly try npm packages without writing boilerplate code",
"main": "index.js",
"bin": {
"npm-try": "built/cli.js"
},
"scripts": {
"prepublishOnly": "npm run build && npm test",
"start": "tsc && node built/index.js",
"build": "tsc",
"mocha": "mocha -r ts-node/register test/**/*.test.ts",
"test": "npm run lint && npm run mocha",
"lint": "tslint --fix src/**/*.ts test/**/*.test.ts",
"semantic-release": "semantic-release"
},
"files": [
"built/",
"cli.sh"
],
"keywords": [
"npm",
"try"
],
"repository": {
"type": "git",
"url": "https://github.com/luin/npm-try.git"
},
"author": "Zihua Li <i@zihua.li>",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.1.7",
"@types/fs-extra": "7.0.0",
"@types/meow": "5.0.0",
"@types/mocha": "5.2.7",
"@types/node": "12.0.5",
"@types/ora": "3.2.0",
"chai": "4.2.0",
"mocha": "6.1.4",
"ts-node": "8.2.0",
"tslint": "5.17.0",
"typescript": "3.5.1",
"semantic-release": "15.13.12"
},
"dependencies": {
"chalk": "^3.0.0",
"fs-extra": "^8.0.1",
"lodash.assign": "^4.2.0",
"meow": "^6.0.0",
"ora": "^4.0.0"
}
}