forked from cdklabs/jsii-srcmak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.26 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.26 KB
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
78
79
80
81
82
{
"//": "Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
"name": "jsii-srcmak",
"description": "generate source code in multiple languages from typescript",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/eladb/jsii-srcmak.git"
},
"bin": {
"jsii-srcmak": "bin/jsii-srcmak"
},
"scripts": {
"projen": "node .projenrc.js && yarn install",
"projen:upgrade": "yarn upgrade -L projen && yarn projen",
"test": "yarn eslint && jest --passWithNoTests",
"bump": "standard-version",
"release": "yarn bump && git push --follow-tags origin master",
"compile": "tsc",
"watch": "tsc -w",
"package": "rm -fr dist && mkdir -p dist/js && yarn pack && mv *.tgz dist/js/",
"build": "yarn compile && yarn test && yarn run package",
"eslint": "eslint . --ext .ts",
"test:watch": "jest --watch",
"test:update": "jest -u"
},
"author": {
"name": "Elad Ben-Israel",
"email": "benisrae@amazon.com",
"organization": false
},
"devDependencies": {
"@types/ncp": "^2.0.4",
"@types/fs-extra": "^8.1.0",
"projen": "^0.3.5",
"standard-version": "^8.0.1",
"typescript": "^3.9.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"json-schema": "^0.2.5",
"jest": "^26.0.1",
"@types/jest": "^25.2.1",
"ts-jest": "^26.1.0",
"@types/node": "^10.17.0"
},
"peerDependencies": {},
"dependencies": {
"jsii": "^1.9.0",
"jsii-pacmak": "^1.9.0",
"fs-extra": "^9.0.0",
"ncp": "^2.0.0",
"yargs": "^11.1.1"
},
"bundledDependencies": [],
"license": "Apache-2.0",
"version": "0.1.5",
"types": "lib/index.d.ts",
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"preset": "ts-jest",
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
}
}
}