-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "@mike-works/node-fundamentals",
"version": "0.0.0-development",
"description": "Mike's Node.js Core Workshop",
"main": "src/index.js",
"scripts": {
"start": "node ./src/index.js",
"test": "mocha --reporter spec test/**/*.test.js",
"test:watch": "mocha --reporter spec --watch test/**/*.test.js",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/mike-works/node-fundamentals.git"
},
"keywords": [
"nodejs",
"workshop"
],
"author": "Mike North <[email protected]> (https://mike.works)",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/mike-works/node-fundamentals/issues"
},
"homepage": "https://github.com/mike-works/node-fundamentals#readme",
"devDependencies": {
"@mike-works/js-lib-renovate-config": "2.0.0",
"@mike-works/workshop-semantic-release-config": "1.0.0",
"@types/chai": "4.3.1",
"@types/inquirer": "6.5.0",
"@types/mocha": "5.2.7",
"@types/node": "10.17.60",
"babel-eslint": "10.1.0",
"chai": "4.3.6",
"mocha": "6.2.3",
"mocha-eslint": "5.0.0",
"scripty": "1.9.1",
"semantic-release": "15.14.0",
"through": "2.3.8",
"travis-deploy-once": "5.0.11",
"tslint": "5.11.0",
"typescript": "3.2.4"
},
"release": {
"extends": "@mike-works/workshop-semantic-release-config"
},
"dependencies": {
"inquirer": "6.5.2"
}
}