-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 867 Bytes
/
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
{
"name": "pomelog",
"version": "1.0.4",
"repository": "tsachis/pomelog",
"description": "A tiny client side utility for tracing/debugging web apps",
"main": "dist/pomelog.js",
"module": "dist/pomelog.es.js",
"jsnext:main": "dist/pomelog.es.js",
"unpkg": "dist/pomelog.min.js",
"types": "dist/pomelog.d.ts",
"typings": "dist/pomelog.d.ts",
"license": "MIT",
"author": {
"name": "Tsachi Shushan",
"email": "[email protected]"
},
"scripts": {
"build": "webpack",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepare": "npm run lint && npm run build"
},
"files": [
"dist"
],
"keywords": [
"pomelog"
],
"devDependencies": {
"ts-loader": "^3.4.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.5.0",
"typescript": "^2.7.1",
"webpack": "^3.10.0"
},
"dependencies": {}
}