-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 763 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 763 Bytes
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
{
"name": "ts-expressions",
"version": "0.0.8",
"description": "A TypeScript transformer to convert TypeScript expressions into equivalent expression trees",
"main": "lib/index",
"typings": "lib/index",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "npm run clean-tests&&jest",
"clean-tests": "del tests\\*.src.js"
},
"author": "Pedro Pedrosa",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pedro-pedrosa/ts-expressions.git"
},
"dependencies": {
"tslib": "^1.9.3",
"typescript": "^3.1.6"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"jest": "^23.6.0",
"ts-jest": "^23.10.4"
},
"jest": {
"testRegex": "(?:/tests/[^\\./]*)\\.(?:jsx?)$"
}
}