-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.15 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
78
79
80
81
82
{
"name": "ts2nim",
"version": "0.0.31",
"description": "typescript to Nim transpiler",
"license": "MIT",
"repository": "https://github.com/bung87/ts2nim",
"author": {
"name": "",
"email": "",
"url": ""
},
"keywords": [
"typescript",
"Nim",
"transpiler"
],
"files": [
"lib"
],
"bin": {
"ts2nim": "lib/cli.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"main": "lib/index",
"types": "lib/index",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --print-width 100 --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --fix --force --format verbose \"src/**/*.ts\"",
"uglifyjs": "uglifyjs lib/*.js --ecma=5 -c drop_console=true -o lib/*.js ",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint",
"build": "npm run prebuild && tsc -p .",
"report": "ts-node src/report-uncovered-ast-types.ts",
"test": "jest --runInBand",
"coverage": "jest --coverage ",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^3.5.0",
"@typescript-eslint/typescript-estree": "^3.5.0",
"fast-glob": "^3.2.4",
"indent-string": "^4.0.0",
"inflection2": "^2.0.1",
"memfs": "^3.1.2",
"mkdirp": "^1.0.4",
"rxjs": "^6.5.5",
"typescript": "^3.1.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/eslint-visitor-keys": "^1.0.0",
"@types/jest": "^23.3.3",
"@types/mkdirp": "^1.0.0",
"@types/node": "^10.11.4",
"@types/yargs": "^15.0.4",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"uglify-es": "^3.3.9"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"__tests__/analyzer_data.ts",
"__tests__/string-template_data.ts"
],
"preset": "ts-jest"
}
}