-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "javascript-examples",
"version": "1.0.1",
"description": "Collection of examples in JavaScript to show how to get things done in an idiomatic way",
"license": "MIT",
"private": true,
"author": "Umut Şahin <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/umut-sahin/javascript-examples.git"
},
"bugs": {
"url": "https://github.com/umut-sahin/javascript-examples/issues"
},
"homepage": "https://github.com/umut-sahin/javascript-examples#readme",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "ava",
"test:watch": "ava --watch",
"test:verbose": "ava --verbose",
"commit": "git-cz",
"lint": "eslint . --no-inline-config",
"brainfuck-interpreter": "node -r esm brainfuck-interpreter/src/main.js",
"command-line-arguments": "node -r esm command-line-arguments/src/main.js",
"http-hello-world-server": "node -r esm http-hello-world-server/src/main.js",
"read-from-console": "node -r esm read-from-console/src/main.js",
"tcp-echo-server": "node -r esm tcp-echo-server/src/main.js",
"timers": "node -r esm timers/src/main.js",
"write-to-console": "node -r esm write-to-console/src/main.js"
},
"devDependencies": {
"ava": "2.2.0",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.1.0",
"eslint-plugin-ava": "7.1.0",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-security": "1.4.0",
"esm": "3.2.25"
},
"dependencies": {
"ansi-colors": "4.1.1",
"commander": "2.20.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint -s"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"esm": {
"mode": "auto",
"await": true,
"cjs": {
"cache": true,
"vars": true,
"interop": true,
"namedExports": true,
"paths": true,
"extensions": true,
"topLevelReturn": false
},
"sourceMap": true,
"debug": true,
"cache": true
},
"ava": {
"require": [
"esm"
],
"files": [
"**/test/*.js"
],
"sources": [
"**/assets/*.js",
"**/src/*.js"
],
"cache": true,
"failFast": true,
"failWithoutAssertions": false
}
}