-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "ng-cli",
"version": "0.7.0",
"description": "Command line tool for AngularJS applications",
"keywords": [
"ng-factory",
"angular",
"cli"
],
"homepage": "https://github.com/ng-tools/ng-cli",
"bugs": "https://github.com/ng-tools/ng-cli/issues",
"author": {
"name": "Olivier Louvignes",
"email": "[email protected]",
"url": "https://github.com/mgcrea"
},
"main": "lib/index.js",
"bin": {
"ng": "bin/ng.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ng-tools/ng-cli.git"
},
"scripts": {
"lint": "jshint test/*.js lib/**/*.js --reporter=node_modules/jshint-stylish/stylish.js",
"test": "npm run lint && mocha"
},
"dependencies": {
"commander": "^2.6.0",
"cwd": "^0.6.0",
"export-files": "^2.0.1",
"load-pkg": "^1.1.3",
"resolve-require": "^0.2.0"
},
"devDependencies": {
"chai": "^1.10.0",
"jshint": "^2.5.11",
"jshint-stylish": "^1.0.0",
"mocha": "^2.1.0",
"proxyquire": "^1.3.0"
},
"engines": {
"node": ">=0.10",
"npm": ">=2"
},
"licenses": [
{
"type": "MIT"
}
]
}