-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.53 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
{
"name": "orbital",
"version": "1.0.0-alpha.28",
"description": "Typescript CLI framework for node",
"scripts": {
"start": "tsc",
"test": "cross-env TS_NODE_PROJECT=packages/core/src/test nyc mocha -r ts-node/register -r tsconfig-paths/register packages/**/test/**/*.spec.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"chalk": "^2.4.1",
"minimist": "^1.2.0",
"reflect-metadata": "^0.1.12",
"winston": "^2.4.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.48",
"@types/node": "^8.10.20",
"@types/winston": "^2.3.9",
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.1",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"lerna": "^2.8.0",
"mocha": "^4.1.0",
"nyc": "^11.9.0",
"ts-node": "^3.3.0",
"tsconfig-paths": "^2.7.3",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"keywords": [
"cli",
"typescript"
],
"author": {
"email": "[email protected]",
"name": "Wilson Hobbs",
"url": "https://www.wilsonhobbs.com"
},
"repository": {
"type": "git",
"url": "https://github.com/orbital-js/orbital"
},
"license": "MIT",
"nyc": {
"extension": [
".ts"
],
"include": [
"packages"
],
"exclude": [
"packages/**/test/",
"**/*.js"
],
"reporter": [
"text",
"lcov",
"text-summary"
],
"require": [
"ts-node/register"
]
}
}