-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 838 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 838 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
33
34
35
{
"name": "assertio",
"version": "1.0.24",
"description": "",
"main": "index.js",
"types": "typings",
"scripts": {
"build": "rm -rf typings && tsc",
"prepublish": "npm run build",
"test": "NODE_ENV=production ttsc -p test/imports && NODE_ENV=production ttsc -p test/globals && node test.js"
},
"files": [
"typings",
"index.js",
"index.ts",
"transform.js",
"transform.ts"
],
"keywords": [
"assert",
"debug",
"typescript"
],
"author": "cevek",
"license": "ISC",
"dependencies": {
"typescript": ">3.7.0"
},
"devDependencies": {
"parcel-bundler": "^1.12.3",
"parcel-plugin-ttypescript": "^1.0.1",
"ts-node": "^8.3.0",
"ttypescript": "^1.5.7"
}
}