-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 905 Bytes
/
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
{
"name": "@remi_bse/magic-square-solver",
"version": "1.0.0",
"author": "Rémi Boissise <developer.remi@gmail.com>",
"description": "Magic square solver",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"pack": "tsc && npm pack",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"testWithCoverage": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ts-node/register tests/**/*.test.ts && nyc report"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"ts-node": "^8.0.3",
"typescript": "^2.9.2"
},
"license": "ISC",
"keywords": [
"magic-square",
"square",
"magicsquare",
"mathematics",
"carré magique",
"mathématiques",
"mathematique"
]
}