-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
54
{
"name": "@phenomnomnominal/parameterised",
"version": "0.1.0",
"description": "Create parameterised tests from Markdown(ish) tables",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "phenomnomnominal/parameterised",
"author": "Craig Spence <craigspence0@gmail.com>",
"license": "MIT",
"scripts": {
"compile": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"test": "nyc mocha './src/*.spec.ts'",
"build": "npm run compile && npm run lint && npm run test",
"prepublishOnly": "rm -rf dist && npm run build"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^9.4.7",
"chai": "^4.1.2",
"mocha": "^5.0.4",
"nyc": "^11.0.2",
"ts-node": "^5.0.1",
"tslint": "^5.6.0",
"typescript": "^2"
},
"nyc": {
"include": [
"**/*.ts"
],
"exclude": [
"**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"report-dir": "./reports/coverage/",
"sourceMap": true,
"instrument": true
}
}