-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 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": "tm-essentials",
"version": "1.0.5",
"description": "A lightweight library in Node.js that provides formatting features and little additions for any development related to Trackmania.",
"main": "src/index.js",
"types": "typings/index.d.ts",
"unpkg": "dist/tm-essentials.min.js",
"scripts": {
"prepack": "npm run types && npm run dist && npm run dist:min",
"dist": "browserify src/index.js -o dist/tm-essentials.js -s TMEssentials",
"dist:min": "browserify src/index.js -s TMEssentials | uglifyjs > dist/tm-essentials.min.js",
"types": "tsc",
"lint": "eslint . --fix",
"test": "eslint . && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreepTheSheep/node-tm-essentials.git"
},
"keywords": [
"trackmania",
"essentials"
],
"author": {
"name": "Greep",
"url": "https://greep.fr/",
"email": "greep@greep.fr"
},
"contributors": [
{
"name": "ThaumicTom",
"url": "https://thaumictom.de",
"email": "tom@thaumictom.de"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GreepTheSheep/node-tm-essentials/issues"
},
"homepage": "https://github.com/GreepTheSheep/node-tm-essentials#readme",
"devDependencies": {
"browserify": "^17.0.1",
"eslint": "^8.57.0",
"mocha": "^10.8.2",
"typescript": "^4.9.5",
"uglify-js": "^3.19.3"
}
}