-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 922 Bytes
/
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
{
"name": "use-strict-cli",
"description": "Adds or removes \"use strict\" from all JavaScript files within directory",
"main": "index.js",
"scripts": {
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philidem/use-strict-cli.git"
},
"keywords": [
"use",
"strict",
"es6",
"usestrict"
],
"author": "Phillip Gates-Idem <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/philidem/use-strict-cli/issues"
},
"homepage": "https://github.com/philidem/use-strict-cli#readme",
"bin": {
"use-strict": "bin/use-strict"
},
"dependencies": {
"colors": "^1.1.2",
"directory-walker": "^1.2.5",
"minimist": "^1.2.0",
"prompt": "^0.2.14",
"raptor-async": "^1.1.2"
},
"version": "1.0.1"
}