@proteinjs/reflection-build 1.4.7 → 1.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/modules/typescript-parser/node-parser/function-parser.js +2 -1
  3. package/dist/test/ParseTupleParams.test.d.ts +1 -0
  4. package/dist/test/ParseTupleParams.test.js +108 -0
  5. package/dist/test/ParseTupleParams.test.js.map +1 -0
  6. package/modules/typescript-parser/node-parser/function-parser.js +2 -1
  7. package/package.json +7 -5
  8. package/test/ParseTupleParams.test.ts +46 -0
  9. package/test/examples/source-repository/a/node_modules/.package-lock.json +6 -6
  10. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/CHANGELOG.md +11 -0
  11. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.d.ts +44 -1
  12. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js +207 -142
  13. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js.map +1 -1
  14. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/package.json +2 -2
  15. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/PackageUtil.ts +176 -102
  16. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/test/PackageUtil.symlinkDependencies.test.ts +76 -0
  17. package/test/examples/source-repository/a/package-lock.json +8 -8
  18. package/test/examples/source-repository/a/package.json +2 -2
  19. package/test/examples/source-repository/b/node_modules/.package-lock.json +4 -4
  20. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/CHANGELOG.md +11 -0
  21. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.d.ts +44 -1
  22. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js +207 -142
  23. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js.map +1 -1
  24. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/package.json +2 -2
  25. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/PackageUtil.ts +176 -102
  26. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/test/PackageUtil.symlinkDependencies.test.ts +76 -0
  27. package/test/examples/source-repository/b/package-lock.json +6 -6
  28. package/test/examples/source-repository/b/package.json +2 -2
  29. package/dist/modules/typescript-parser/package-lock.json +0 -16793
  30. package/dist/modules/typescript-parser/package.json +0 -55
  31. package/modules/typescript-parser/package-lock.json +0 -16793
  32. package/modules/typescript-parser/package.json +0 -55
@@ -1,55 +0,0 @@
1
- {
2
- "name": "typescript-parser",
3
- "version": "0.0.1",
4
- "private": true,
5
- "description": "Parser for typescript (and javascript) files, that compiles those files and generates a human understandable AST.",
6
- "main": "index.js",
7
- "typings": "index.d.ts",
8
- "scripts": {
9
- "build": "npm run clean && tsc -p ./config/tsconfig.build.json",
10
- "clean": "del-cli ./build ./coverage",
11
- "develop": "npm run clean && tsc -p .",
12
- "lint": "tslint -c ./tslint.json -p ./config/tsconfig.build.json 'src/**/*.ts'",
13
- "test": "npm run lint && npm run clean && jest -c ./jest.json",
14
- "test:watch": "npm run clean && jest -c ./jest.json --watch --no-coverage",
15
- "typedoc": "del-cli ./docs && typedoc --ignoreCompilerErrors --out ./docs --mode file --tsconfig ./config/tsconfig.build.json ./src/",
16
- "semantic-release": "semantic-release"
17
- },
18
- "repository": {
19
- "type": "git",
20
- "url": "https://github.com/TypeScript-Heroes/node-typescript-parser.git"
21
- },
22
- "keywords": [
23
- "typescript",
24
- "parser",
25
- "AST",
26
- "parsing"
27
- ],
28
- "author": "Christoph Bühler <christoph.buehler@bluewin.ch>",
29
- "license": "MIT",
30
- "bugs": {
31
- "url": "https://github.com/TypeScript-Heroes/node-typescript-parser/issues"
32
- },
33
- "homepage": "https://github.com/TypeScript-Heroes/node-typescript-parser#readme",
34
- "devDependencies": {
35
- "@smartive/tslint-config": "^4.0.0",
36
- "@types/jest": "^23.3.1",
37
- "@types/lodash-es": "^4.17.1",
38
- "@types/mock-fs": "^3.6.30",
39
- "@types/node": "^10.9.4",
40
- "del-cli": "^1.1.0",
41
- "jest": "^23.5.0",
42
- "mock-fs": "^4.6.0",
43
- "semantic-release": "^15.9.12",
44
- "ts-jest": "^23.1.4",
45
- "tslint": "^5.11.0",
46
- "tsutils": "^3.0.0",
47
- "typedoc": "^0.12.0"
48
- },
49
- "dependencies": {
50
- "lodash": "^4.17.10",
51
- "lodash-es": "^4.17.10",
52
- "tslib": "^1.9.3",
53
- "typescript": "^3.0.3"
54
- }
55
- }