-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
77 lines (77 loc) · 2.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "conjure-typescript",
"version": "0.0.0",
"description": "A conjure generator for Typescript",
"bin": {
"conjure-typescript": "./bin/conjure-typescript"
},
"sideEffects": false,
"scripts": {
"build": "npm-run-all clean compile verify",
"circle-publish": "./gradlew publish && ./scripts/circle-publish-npm",
"clean": "rm -rf dist lib",
"compile": "npm-run-all -p compile-ts compile-dist",
"compile-dist": "webpack --config webpack.config.js && cp bin/conjure-typescript.bat dist/bin",
"compile-ts": "tsc -p ./src",
"generateTestCases": "./scripts/download-conjure-core.sh && ./scripts/generate-test-cases.sh",
"downloadTestServer": "./scripts/download-test-server.sh",
"generateSpecBindings": "./scripts/generate-test-bindings.sh",
"lint": "tslint 'src/**/*.ts*' --project ./src/tsconfig.json",
"lint-fix": "yarn lint -- --fix --project ./src/tsconfig.json",
"test": "yarn downloadTestServer && yarn generateSpecBindings && yarn generateTestCases && npm-run-all test:unit test:integration test:ete",
"test:integration": "./scripts/run-integration-tests.sh",
"test:unit": "jest --config ./jest.config.js --rootDir ./",
"test:ete": "./scripts/ete-test.sh",
"verify": "npm-run-all lint test"
},
"dependencies": {
"commander": "^2.19.0",
"conjure-api": "^4.50.0",
"conjure-client": "^2.4.1",
"fs-extra": "^10.1.0",
"lodash": "^4.17.11",
"mkdirp": "^1.0.4",
"path": "^0.12.7",
"semver": "^7.3.7",
"sls-version": "^2.1.0",
"ts-morph": "^17.0.1",
"tslib": "^2.5.0",
"yargs": "^11.1.0"
},
"devDependencies": {
"@blueprintjs/tslint-config": "^3.3.1",
"@types/chai": "^4.1.6",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.117",
"@types/mkdirp": "^1.0.2",
"@types/nock": "^9.3.0",
"@types/node": "^18.14.6",
"@types/node-dir": "^0.0.30",
"@types/semver": "^7.3.10",
"@types/tempy": "^0.1.0",
"@types/yargs": "^11.1.2",
"chai": "^4.2.0",
"jest": "^27.0.3",
"karma": "^6.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-nodeunit": "^0.2.0",
"karma-typescript": "^5.5.3",
"mocha": "^5.2.0",
"node-dir": "^0.1.17",
"npm-run-all": "^4.1.3",
"prettier": "^2.8.4",
"spawn-sync": "^2.0.0",
"tempy": "^0.2.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.3.1",
"tslint": "^6.0.0",
"typescript": "~4.9.5",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"author": "Palantir Technologies, Inc.",
"license": "Apache-2.0"
}