-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "helena",
"version": "0.0.1",
"author": "Frédéric Bonnet <[email protected]>",
"description": "Helena programming language",
"license": "BSD-3-Clause",
"homepage": "https://github.com/fredericbonnet/helena",
"repository": {
"type": "git",
"url": "https://github.com/fredericbonnet/helena.git"
},
"bugs": {
"url": "https://github.com/fredericbonnet/helena/issues"
},
"categories": [
"Programming Languages"
],
"scripts": {
"start": "ts-node index.ts",
"lint": "eslint src",
"test": "mocha",
"test:watch": "mocha -w",
"test:doc": "mocha --config .mocharc.docs.json",
"test:doc:watch": "mocha --config .mocharc.docs.json -w"
},
"private": true,
"devDependencies": {
"@microsoft/tsdoc": "^0.14.2",
"@microsoft/tsdoc-config": "^0.16.2",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"ansi-colors": "^4.1.3",
"chai": "^4.3.4",
"eslint": "^8.23.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-tsdoc": "^0.2.16",
"mocha": "^10.0.0",
"mocha-multi-reporters": "^1.5.1",
"prettier": "^2.7.1",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}