-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "my-pluralize-ts-ci",
"version": "1.1.0",
"description": "Training with Typescript library publish and training with Travis CI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --reporter spec",
"tsc-init": "./node_modules/.bin/tsc --init",
"build": "./node_modules/.bin/tsc",
"cover": "istanbul cover node_modules/mocha/bin/_mocha test/*.js -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npm-js-ts-angular-modules-course/my-pluralize-ts-ci.git"
},
"keywords": [],
"author": "Anartz Mugika Ledo <mugan86@gmail.com> (https://mugan86.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm-js-ts-angular-modules-course/my-pluralize-ts-ci/issues"
},
"homepage": "https://github.com/npm-js-ts-angular-modules-course/my-pluralize-ts-ci#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@types/pluralize": "0.0.29",
"pluralize": "^7.0.0"
}
}