-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 995 Bytes
/
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
{
"name": "ts-use-exports",
"version": "1.1.2",
"description": "A TypeScript custom transformer that redirects function reference to the exports object.",
"repository": "https://github.com/tommyip/ts-use-exports",
"author": "Thomas Ip",
"license": "MIT",
"keywords": [
"typescript",
"typescript-transformer",
"commonjs",
"exports",
"testing",
"unit-testing",
"stubs"
],
"main": "dist/transformer.js",
"types": "dist/transformer.d.ts",
"scripts": {
"build": "tsc",
"test": "TS_NODE_PROJECT=tests/tsconfig.json TS_NODE_COMPILER=ttypescript ava"
},
"dependencies": {
"ts-morph": "^3.1.2"
},
"devDependencies": {
"@types/sinon": "^7.0.13",
"ava": "^2.2.0",
"sinon": "^7.3.2",
"ts-node": "^8.3.0",
"ttypescript": "^1.5.7"
},
"ava": {
"files": [
"tests/**/test_*"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}