-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.7 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
55
56
57
58
{
"name": "@grainlogic/stack",
"version": "1.2.0",
"license": "MIT",
"author": {
"name": "Artyom Kayun",
"email": "kayun.artem@gmail.com"
},
"description": "Implementation of stack data structure",
"keywords": [
"stack",
"lifo",
"data-structure",
"typescript-library",
"javascript-library"
],
"bugs": {
"url": "https://github.com/grainlogic/stack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grainlogic/stack.git"
},
"homepage": "https://github.com/grainlogic/stack#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "tsc --incremental --watch",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "ts-node ./build.ts && cp LICENSE README.md dist",
"lint": "tslint -p tsconfig.json -c tslint.json",
"pretest": "rimraf coverage .nyc_output",
"test": "nyc --nycrc-path .config/nyc.config.js mocha --config .config/mocha.config.js src/**/*.spec.ts",
"posttest": "nyc --nycrc-path .config/nyc.config.js --reporter text report && codecov -f coverage/*.json",
"test:watch": "mocha --config .config/mocha.config.js --watch src/**/*.spec.ts",
"preversion": "yarn run lint && yarn run test",
"postversion": "yarn run build && git push origin --follow-tag && cd dist && npm publish"
},
"devDependencies": {
"@types/chai": "4.2.12",
"@types/mocha": "8.0.0",
"@types/node": "10.17.8",
"chai": "4.2.0",
"codecov": "3.7.2",
"mocha": "8.0.1",
"nyc": "15.1.0",
"rimraf": "3.0.0",
"ts-node": "8.10.2",
"tslint": "6.1.2",
"tslint-config-standard": "9.0.0",
"typescript": "3.9.2"
},
"dependencies": {
"tslib": "^2.0.0"
}
}