|
1 | 1 | { |
2 | | - "name": "ts-docs-gen", |
3 | | - "version": "0.1.0", |
4 | | - "description": "Generating documentation for TypeScript code", |
5 | | - "main": "./dist/index.js", |
6 | | - "typings": "./dist/index.d.ts", |
7 | | - "scripts": { |
8 | | - "pretest": "npm run build -- --noEmit && npm run build-tests", |
9 | | - "test": "npm run tslint && jest && echo All tests passed successfully.", |
10 | | - "test-ci": "npm run pretest && npm run tslint && jest --maxWorkers=4 -b", |
11 | | - "test-watch": "start npm run build-tests -- --watchAll && jest --watchAll", |
12 | | - "tslint": "tslint --project . --config ./tslint.json && echo Successfully passed tslint test.", |
13 | | - "build": "tsc -p .", |
14 | | - "build-tests": "test-generator-cli" |
15 | | - }, |
16 | | - "engine": "node >= 7.5.0", |
17 | | - "author": "simplrjs <[email protected]> (https://github.com/simplrjs)", |
18 | | - "dependencies": { |
19 | | - "@simplrjs/markdown": "^1.1.0", |
20 | | - "@types/fs-extra": "^5.0.0", |
21 | | - "@types/yargs": "^10.0.1", |
22 | | - "fs-extra": "^5.0.0", |
23 | | - "simplr-logger": "^1.0.1", |
24 | | - "ts-extractor": "^4.0.0-rc.1", |
25 | | - "typescript": "^2.6.2", |
26 | | - "yargs": "^11.0.0" |
27 | | - }, |
28 | | - "devDependencies": { |
29 | | - "@simplrjs/test-generator-cli": "^0.1.3", |
30 | | - "@types/jest": "^22.1.1", |
31 | | - "@types/sinon": "^4.1.3", |
32 | | - "jest": "^22.1.4", |
33 | | - "simplr-tslint": "0.0.1", |
34 | | - "sinon": "^4.2.2", |
35 | | - "ts-jest": "^22.0.2", |
36 | | - "tslint": "^5.9.1" |
37 | | - }, |
38 | | - "bin": "./dist/cli/launcher.js", |
39 | | - "jest": { |
40 | | - "collectCoverage": true, |
41 | | - "mapCoverage": true, |
42 | | - "transform": { |
43 | | - ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js" |
| 2 | + "name": "ts-docs-gen", |
| 3 | + "version": "0.2.0", |
| 4 | + "description": "Generating documentation for TypeScript code", |
| 5 | + "main": "./dist/index.js", |
| 6 | + "typings": "./dist/index.d.ts", |
| 7 | + "scripts": { |
| 8 | + "pretest": "npm run build -- --noEmit && npm run build-tests", |
| 9 | + "test": "npm run tslint && jest && echo All tests passed successfully.", |
| 10 | + "test-ci": "npm run pretest && npm run tslint && jest --maxWorkers=4 -b", |
| 11 | + "test-watch": "start npm run build-tests -- --watchAll && jest --watchAll", |
| 12 | + "tslint": "tslint --project . --config ./tslint.json && echo Successfully passed tslint test.", |
| 13 | + "build": "tsc -p .", |
| 14 | + "build-tests": "test-generator-cli" |
44 | 15 | }, |
45 | | - "globals": { |
46 | | - "ts-jest": { |
47 | | - "skipBabel": true, |
48 | | - "tsConfigFile": "tests/tsconfig.json" |
49 | | - } |
| 16 | + "engine": "node >= 7.5.0", |
| 17 | + "author": "simplrjs <[email protected]> (https://github.com/simplrjs)", |
| 18 | + "contributors": [ |
| 19 | + "Martynas Žilinskas <[email protected]> (https://github.com/MartynasZilinskas)", |
| 20 | + "Deividas Bakanas <[email protected]> (https://github.com/DeividasBakanas)" |
| 21 | + ], |
| 22 | + "repository": { |
| 23 | + "type": "git", |
| 24 | + "url": "https://github.com/SimplrJS/ts-docs-gen" |
50 | 25 | }, |
51 | | - "testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx|js)$", |
52 | | - "moduleNameMapper": { |
53 | | - "@src/(.*)": "<rootDir>/src/$1" |
| 26 | + "dependencies": { |
| 27 | + "@simplrjs/markdown": "^1.1.0", |
| 28 | + "@types/fs-extra": "^5.0.0", |
| 29 | + "@types/yargs": "^10.0.1", |
| 30 | + "fs-extra": "^5.0.0", |
| 31 | + "simplr-logger": "^1.0.1", |
| 32 | + "ts-extractor": "^4.0.0-rc.4", |
| 33 | + "typescript": "^2.7.1", |
| 34 | + "yargs": "^11.0.0" |
54 | 35 | }, |
55 | | - "coveragePathIgnorePatterns": [ |
56 | | - "/node_modules/", |
57 | | - "/tests/" |
58 | | - ], |
59 | | - "moduleFileExtensions": [ |
60 | | - "ts", |
61 | | - "tsx", |
62 | | - "js" |
| 36 | + "devDependencies": { |
| 37 | + "@simplrjs/test-generator-cli": "^0.1.3", |
| 38 | + "@types/jest": "^22.1.1", |
| 39 | + "@types/sinon": "^4.1.3", |
| 40 | + "jest": "^22.1.4", |
| 41 | + "simplr-tslint": "0.0.1", |
| 42 | + "sinon": "^4.2.2", |
| 43 | + "ts-jest": "^22.0.2", |
| 44 | + "tslint": "^5.9.1" |
| 45 | + }, |
| 46 | + "bin": "./dist/cli/launcher.js", |
| 47 | + "files": [ |
| 48 | + "dist", |
| 49 | + "**/*.md", |
| 50 | + "@types", |
| 51 | + "!/examples" |
63 | 52 | ], |
64 | | - "verbose": true |
65 | | - } |
| 53 | + "jest": { |
| 54 | + "collectCoverage": true, |
| 55 | + "mapCoverage": true, |
| 56 | + "transform": { |
| 57 | + ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js" |
| 58 | + }, |
| 59 | + "globals": { |
| 60 | + "ts-jest": { |
| 61 | + "skipBabel": true, |
| 62 | + "tsConfigFile": "tests/tsconfig.json" |
| 63 | + } |
| 64 | + }, |
| 65 | + "testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx|js)$", |
| 66 | + "moduleNameMapper": { |
| 67 | + "@src/(.*)": "<rootDir>/src/$1" |
| 68 | + }, |
| 69 | + "coveragePathIgnorePatterns": [ |
| 70 | + "/node_modules/", |
| 71 | + "/tests/" |
| 72 | + ], |
| 73 | + "moduleFileExtensions": [ |
| 74 | + "ts", |
| 75 | + "tsx", |
| 76 | + "js" |
| 77 | + ], |
| 78 | + "verbose": true |
| 79 | + } |
66 | 80 | } |
0 commit comments