-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "jsmodern",
"version": "0.9.0",
"description": "An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.",
"keywords": [
"extensions",
"javascript",
"javascript-extensions",
"jsmodern",
"node",
"typescript"
],
"homepage": "https://github.com/motss/jsmodern",
"repository": {
"type": "git",
"url": "[email protected]:motss/jsmodern.git"
},
"license": "MIT",
"author": {
"name": "Rong Sen Ng (motss)",
"email": "[email protected]",
"url": "https://github.com/motss"
},
"main": "dist/index",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*.*js.map",
"dist/**/*.*js",
"dist/**/*.d.ts.map",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"build:test": "tsc -p tsconfig.test.json",
"clean": "shx rm -rf dist/ .*cache *.log",
"jest": "jest --config ./.jestrc.json",
"lint": "npm run lint:debug -- --config tslint.prod.json",
"lint:debug": "tslint --project tsconfig.json --format stylish",
"prepublishOnly": "npm run lint && npm run build",
"test": "npm run lint && npm run build:test && npm run jest",
"ts": "tsc",
"watch": "tsc --watch",
"watch:build": "npm run build:test -- --watch",
"watch:test": "npm run jest -- --watchAll"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && tsc --noEmit"
}
},
"dependencies": {
"tslib": "^1.10.0"
},
"devDependencies": {
"@reallyland/tsconfig": "^2.0.0",
"@reallyland/tslint-config": "^1.1.1",
"@types/jest": "^24.9.1",
"@types/node": "^13.9.8",
"husky": "^4.2.3",
"jest": "^24.9.0",
"shx": "^0.3.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"engines": {
"node": ">= 10.18.1",
"npm": ">= 6.13.4"
},
"publishConfig": {
"access": "public"
}
}