-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "lean.js",
"version": "0.0.1",
"description": "A lean subset of JavaScript for no-bullshit daily development.",
"main": "src/index.js",
"scripts": {
"tsc": "npr tsc -p jsconfig.json --maxNodeModuleJsDepth 0",
"lint": "npr tsdocstandard",
"test": "npm run tsc && npm run lint && node test/index.js && npm run type-coverage",
"type-coverage": "npr type-coverage -p jsconfig.json --ignore-catch --strict --at-least 100"
},
"author": "Raynos <[email protected]>",
"repository": "git://github.com/Raynos/lean.js.git",
"homepage": "https://github.com/Raynos/lean.js",
"bugs": {
"url": "https://github.com/Raynos/lean.js/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Raynos"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/Raynos/lean.js/raw/master/LICENSE"
}
],
"tsdocstandard": {
"ignore": [
"test/fixtures/*.js",
"src/*.d.ts"
]
},
"binDependencies": {
"tsdocstandard": "16.2.0",
"type-coverage": "2.13.3",
"typescript": "4.1.3"
},
"devDependencies": {
"@pre-bundled/tape": "4.11.0",
"@types/node": "14.14.21",
"npm-bin-deps": "1.10.1"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "4.13.0",
"typescript": "4.1.3"
}
}