forked from palantir/conjure-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.45 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
{
"name": "conjure-typescript",
"version": "0.0.0",
"description": "A conjure generator for Typescript",
"bin": {
"conjure-typescript": "./bin/conjure-typescript"
},
"sideEffects": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm-run-all clean compile verify",
"circle-publish": "./scripts/circle-publish-npm && ./scripts/circle-publish-dist",
"clean": "rm -rf dist lib",
"compile": "npm-run-all -p compile-ts compile-dist",
"compile-dist": "webpack --config webpack.config.js",
"compile-ts": "tsc -p ./src",
"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 && npm-run-all test:unit test:integration",
"test:integration": "./scripts/run-integration-tests.sh",
"test:unit": "jest --config ./jest.config.js --rootDir ./",
"verify": "npm-run-all lint test"
},
"dependencies": {
"commander": "^2.19.0",
"conjure-api": "^4.3.0",
"conjure-client": "^1.3.2",
"fs-extra": "^5.0.0",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"semver": "^5.6.0",
"sls-version": "^1.1.1",
"ts-simple-ast": "^11.3.0",
"tslib": "^1.9.3",
"yargs": "^11.1.0"
},
"devDependencies": {
"@blueprintjs/tslint-config": "^1.6.0",
"@types/chai": "^4.1.6",
"@types/commander": "2.12.2",
"@types/download": "^6.2.2",
"@types/fs-extra": "^5.0.4",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.117",
"@types/mkdirp": "^0.5.2",
"@types/nock": "^9.3.0",
"@types/node-dir": "^0.0.30",
"@types/semver": "^5.5.0",
"@types/tempy": "^0.1.0",
"@types/yargs": "^11.1.2",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"jest": "^22.4.4",
"karma": "^2.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-nodeunit": "^0.2.0",
"karma-typescript": "^3.0.13",
"mocha": "^5.2.0",
"node-dir": "^0.1.17",
"npm-run-all": "^4.1.3",
"tempy": "^0.2.1",
"ts-jest": "^22.4.6",
"tslint": "^5.11.0",
"typescript": "~2.9.2",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2"
},
"author": "Palantir Technologies, Inc.",
"license": "Apache-2.0"
}