-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
54 lines (54 loc) · 1.41 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "are-you-es5",
"version": "2.1.2",
"description": "A package to help you find out which of your `node_modules` aren't ES5 so you can add them to your transpilation steps.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/obahareth/are-you-es5.git",
"author": "Omar Bahareth <[email protected]>",
"license": "MIT",
"private": false,
"bin": {
"are-you-es5": "./dist/cli.js"
},
"dependencies": {
"acorn": "^6.0.6",
"array-flatten": "^2.1.0",
"commander": "^2.19.0",
"find-up": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.20",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.12.21",
"jest": "^24.9.0",
"mock-fs": "^4.10.1",
"prettier": "^1.16.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.5.0"
},
"engines": {
"node": ">=10.0"
},
"keywords": [
"javascript",
"transpiling",
"bundling",
"es5",
"webpack",
"babel"
],
"scripts": {
"build": "tsc",
"format": "yarn prettier:check --write",
"lint": "tslint \"src/**/*.ts\"",
"lint:fix": "yarn format && yarn lint --fix",
"prepublish": "yarn build",
"prettier:check": "prettier --check \"{src,tests}/**/*.ts\"",
"start": "yarn ts-node --files ./src/index.ts check $(pwd)",
"test": "yarn jest"
}
}