-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "include-me",
"version": "0.0.2",
"description": "",
"main": "./dist/index.js",
"scripts": {
"prepublish": "yarn lint && yarn build",
"test": "nyc --check-coverage --lines=85 cross-env NODE_ENV=production mocha -r ts-node/register --recursive 'test/*/*.spec.ts' 'test/**/*.spec.ts'",
"build": "node_modules/.bin/tsc",
"watch": "node_modules/.bin/tsc -w",
"start:example": "node ./example/index.js",
"lint": "node_modules/.bin/tslint src/*.ts src/**/*.ts test/*.ts test/**/*.ts",
"lint:fix": "node_modules/.bin/tslint src/*.ts src/**/*.ts test/*.ts test/**/*.ts --fix"
},
"keywords": [
"include",
"me",
"templating"
],
"author": "Emre Kul <emrekul35@gmail.com>",
"license": "GPL-3.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/faker": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/sinon": "^7.0.2",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"faker": "^4.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"test/**",
"dist/**",
"coverage/**",
"example",
"docs",
"src/interfaces"
],
"reporter": [
"text"
],
"all": true
}
}