-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "recnum",
"version": "1.1.2",
"description": "A way to do cool math",
"main": "dist/main.js",
"scripts": {
"start": "node dist/main.js",
"start:dev": "yarn install && tsc -w",
"build": "tsc",
"test": "mocha",
"cover": "nyc --check-coverage --lines 100 npm test",
"cover:report": "nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylerthecoder/Recreational_Math.git"
},
"keywords": [
"math",
"number theory",
"recreational mathematics",
"mathematics",
"javascript"
],
"author": "Tyler Tracy",
"license": "ISC",
"bugs": {
"url": "https://github.com/tylerthecoder/Recreational_Math/issues"
},
"homepage": "https://github.com/tylerthecoder/Recreational_Math#readme",
"devDependencies": {
"@types/lodash": "^4.14.119",
"chai": "^4.2.0",
"jasmine": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
},
"dependencies": {
"global": "^4.3.2",
"lodash": "^4.17.11"
}
}