-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.84 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ts-iterable",
"version": "1.0.1",
"description": "Iterable abstract class for TypeScript",
"keywords": [
"iterable",
"iterator",
"Symbol",
"Array",
"ES6",
"TypeScript"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"tslint": "tslint lib/**/*.ts",
"build": "tsc",
"test": "mocha -r ts-node/register lib/*.spec.ts lib/**/*.spec.ts",
"cover": "nyc npm t",
"bump": "npm run tslint && npm run build && npm version patch && git push --tags origin master && npm publish",
"bump:minor": "npm run tslint && npm run build && npm version minor && git push --tags origin master && npm publish",
"bump:major": "npm run tslint && npm run build && npm version major && git push --tags origin master && npm publish"
},
"files": [
"lib",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Boulangerie/ts-iterable.git"
},
"author": "Yannick Galatol <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Boulangerie/ts-iterable/issues"
},
"homepage": "https://github.com/Boulangerie/ts-iterable",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"@types/sinon": "^1.16.34",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.7",
"ts-node": "^1.7.2",
"tslint": "^4.0.2",
"tslint-eslint-rules": "^3.1.0",
"typescript": "^2.1.0"
},
"nyc": {
"include": [
"lib/**/*.ts"
],
"exclude": [
"node_modules",
"example",
"typings",
"**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcovonly"
],
"all": true,
"report-dir": "./reports"
}
}