forked from tools/josh
1
0
Fork 0
And reformat the package.json while I'm at it.
This commit is contained in:
Florine W. Dekker 2019-11-09 19:36:23 +01:00
parent 11523b5046
commit 39aa4d6412
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
4 changed files with 44 additions and 36 deletions

3
.nycrc.json Normal file
View File

@ -0,0 +1,3 @@
{
"extends": "@istanbuljs/nyc-config-typescript"
}

View File

@ -25,4 +25,6 @@ $> npm run clean
```shell script ```shell script
# Run tests # Run tests
$> npm test $> npm test
# Run tests with coverage
$> npm run coverage
``` ```

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,38 +1,41 @@
{ {
"name": "fwdekker.com", "name": "fwdekker.com",
"version": "1.6.4", "version": "1.6.4",
"description": "The source code of [my personal website](https://fwdekker.com/).", "description": "The source code of [my personal website](https://fwdekker.com/).",
"author": "Felix W. Dekker", "author": "Felix W. Dekker",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git@git.fwdekker.com:FWDekker/fwdekker.com.git" "url": "git@git.fwdekker.com:FWDekker/fwdekker.com.git"
}, },
"private": true, "private": true,
"scripts": { "scripts": {
"clean": "grunt clean", "clean": "grunt clean",
"dev": "grunt dev", "dev": "grunt dev",
"deploy": "grunt deploy", "deploy": "grunt deploy",
"test": "mocha -r ts-node/register src/**/*.spec.ts" "test": "mocha -r ts-node/register src/**/*.spec.ts",
}, "coverage": "nyc npm run test"
"dependencies": { },
"js-cookie": "^2.2.1" "dependencies": {
}, "js-cookie": "^2.2.1"
"devDependencies": { },
"@types/chai": "^4.2.4", "devDependencies": {
"@types/js-cookie": "^2.2.4", "@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/mocha": "^5.2.7", "@types/chai": "^4.2.4",
"chai": "^4.2.0", "@types/js-cookie": "^2.2.4",
"grunt": "^1.0.4", "@types/mocha": "^5.2.7",
"grunt-cli": "^1.3.2", "chai": "^4.2.0",
"grunt-contrib-clean": "^2.0.0", "grunt": "^1.0.4",
"grunt-contrib-copy": "^1.0.0", "grunt-cli": "^1.3.2",
"grunt-text-replace": "^0.4.0", "grunt-contrib-clean": "^2.0.0",
"grunt-webpack": "^3.1.3", "grunt-contrib-copy": "^1.0.0",
"mocha": "^6.2.2", "grunt-text-replace": "^0.4.0",
"ts-loader": "^6.2.1", "grunt-webpack": "^3.1.3",
"ts-node": "^8.4.1", "mocha": "^6.2.2",
"typescript": "^3.7.2", "nyc": "^14.1.1",
"webpack": "^4.41.2", "ts-loader": "^6.2.1",
"webpack-cli": "^3.3.10" "ts-node": "^8.4.1",
} "typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
} }