|
1 | 1 | {
|
2 | 2 | "name": "@algo-js/segment-tree",
|
3 |
| - "version": "1.0.0", |
| 3 | + "version": "1.0.1", |
4 | 4 | "description": "Segment Tree implementation in TypeScript",
|
5 | 5 | "main": "build/main/index.js",
|
6 | 6 | "typings": "build/main/index.d.ts",
|
|
29 | 29 | "doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
|
30 | 30 | "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
|
31 | 31 | "version": "standard-version",
|
32 |
| - "reset": "git clean -dfx && git reset --hard && npm i", |
33 | 32 | "clean": "trash build test",
|
34 |
| - "prepare-release": "run-s reset test cov:check doc:html version doc:publish", |
35 |
| - "preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('@algo-js/segment-tree must be installed with Yarn: https://yarnpkg.com/')\"" |
| 33 | + "prepare-release": "run-s test cov:check doc:html version doc:publish", |
| 34 | + "preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) console.warn('@algo-js/segment-tree must be installed with Yarn: https://yarnpkg.com/')\"" |
36 | 35 | },
|
37 | 36 | "scripts-info": {
|
38 | 37 | "info": "Display information about the package scripts",
|
|
44 | 43 | "doc": "Generate HTML API documentation and open it in a browser",
|
45 | 44 | "doc:json": "Generate API documentation in typedoc JSON format",
|
46 | 45 | "version": "Bump package.json version, update CHANGELOG.md, tag release",
|
47 |
| - "reset": "Delete all untracked files and reset the repo to the last commit", |
48 | 46 | "prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
|
49 | 47 | },
|
50 | 48 | "engines": {
|
51 | 49 | "node": ">=8.9"
|
52 | 50 | },
|
53 |
| - "dependencies": { |
54 |
| - "sha.js": "^2.4.11" |
55 |
| - }, |
56 | 51 | "devDependencies": {
|
57 | 52 | "ava": "2.2.0",
|
58 | 53 | "codecov": "^3.5.0",
|
|
67 | 62 | "tslint": "^5.18.0",
|
68 | 63 | "tslint-config-prettier": "^1.18.0",
|
69 | 64 | "tslint-immutable": "^6.0.1",
|
| 65 | + "typedoc": "^0.15.0", |
70 | 66 | "typescript": "^3.5.3"
|
71 | 67 | },
|
72 | 68 | "ava": {
|
|
0 commit comments