-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
{
"name": "presm",
"version": "1.0.0",
"description": "Pre-processing for ES modules in node",
"homepage": "https://github.com/googleinterns/presm/",
"devDependencies": {
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"gts": "^2.0.2",
"prettier": "^2.0.5",
"tap": "^14.10.7"
},
"dependencies": {
"rollup": "^2.23.0",
"dotenv": "^8.2.0",
"typescript": "^3.9.7",
"yaml": "^1.10.0",
"yargs": "^15.3.1",
"@types/node": "^14.0.12",
"@types/yargs": "^15.0.5"
},
"engines": {
"node": ">=12.2.0"
},
"main": "./src/loader.js",
"bin": {
"presmbuild": "./src/index.js"
},
"scripts": {
"lint": "eslint . --ext .mjs --ext .ts --ext .js",
"lint-fix": "eslint . --ext .mjs --ext .ts --ext .js --fix",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"test": "npm run test-unit && npm run test-system",
"test-snapshot": "npm run test-snapshot-unit && npm run test-snapshot-system",
"test-unit": "tap --no-coverage ./test/unit/",
"test-system": "tap --no-coverage ./test/system/",
"test-snapshot-unit": "tap --no-coverage --snapshot ./test/unit/",
"test-snapshot-system": "tap --no-coverage --snapshot ./test/system/"
},
"tap": {
"esm": false
}
}