-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "linked-list-typescript",
"version": "1.0.15",
"description": "simple typescript linked-list with generics typing",
"main": "lib/src/index.js",
"typings": "lib/src/index",
"files": [
"lib/src/"
],
"repository": "https://github.com/sfkiwi/linked-list-typescript.git",
"author": "Mike Sutherland <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"typescript",
"javascript",
"linked-list",
"linkedlist"
],
"bugs": {
"url": "https://github.com/sfkiwi/linked-list-typescript/issues"
},
"homepage": "https://github.com/sfkiwi/linked-list-typescript#readme",
"scripts": {
"pretest": "yarn run build",
"build": "tsc",
"test": "nyc ./node_modules/.bin/mocha",
"coverage": "yarn run build && nyc ./node_modules/.bin/mocha",
"coverage:lcov": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "./node_modules/.bin/nyc report --reporter text-summary --reporter html && open coverage/index.html",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"clean": "rm -fr clean coverage .nyc_output"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.18.1",
"eslint-plugin-react": "^7.7.0",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.6.0",
"source-map-support": "^0.5.4",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
}
}