-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "simplr-logger",
"version": "0.2.1",
"description": "Simple JavaScript logger written in TypeScript.",
"main": "dist/simplr-logger.js",
"types": "@types/index.d.ts",
"scripts": {
"test": "tsc -p . --noEmit && npm run tslint",
"tslint": "tslint --project . --config ./tslint.json",
"build": "webpack",
"watch": "webpack --watch",
"uglifyjs": "uglifyjs ./dist/simplr-logger.js -o ./dist/simplr-logger.min.js --compress --mangle",
"release": "npm run build && npm run uglifyjs",
"preversion": "npm run release",
"prepublishOnly": "npm run release"
},
"repository": {
"type": "git",
"url": "git https://github.com/SimplrJS/simplr-logger.git"
},
"keywords": [
"typescript",
"javascript",
"logger",
"simplr",
"console"
],
"author": "SimplrJS <[email protected]> (https://github.com/SimplrJS)",
"contributors": [
"Giedrius Grabauskas <[email protected]> (https://github.com/GiedriusGrabauskas)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SimplrJS/simplr-logger/issues"
},
"homepage": "https://github.com/SimplrJS/simplr-logger#readme",
"devDependencies": {
"simplr-tslint": "0.0.1",
"ts-loader": "^3.1.1",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"uglify-js": "^3.1.9",
"webpack": "^3.8.1"
}
}