-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "esmock-source-map-bug",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "rimraf dist && tsc && cross-env NODE_OPTIONS=--loader=esmock NODE_NO_WARNINGS=1 ava",
"test-no-maps": "rimraf dist && tsc --sourceMap false && cross-env NODE_OPTIONS=--loader=esmock NODE_NO_WARNINGS=1 ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakebailey/esmock-source-map-bug.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakebailey/esmock-source-map-bug/issues"
},
"homepage": "https://github.com/jakebailey/esmock-source-map-bug#readme",
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@tsconfig/node14": "^1.0.3",
"@types/node": "^18.7.3",
"ava": "^4.3.1",
"cross-env": "^7.0.3",
"esmock": "^1.9.3",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
},
"environmentVariables": {
"NO_COLOR": "1",
"FORCE_COLOR": "0"
}
}
}