-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 949 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 949 Bytes
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
{
"name": "webtrends",
"version": "1.0.6",
"description": "A package wrap WebTrends Tag. https://help.webtrends.com/en/jstag/",
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"del-cli": "0.2.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean:lib": "del-cli lib/**",
"build": "npm run clean:lib && babel src --out-dir lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jBox/webtrends.git"
},
"keywords": [
"WebTrends"
],
"author": "jBox",
"license": "ISC",
"bugs": {
"url": "https://github.com/jBox/webtrends/issues"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"files": [
"lib"
],
"homepage": "https://github.com/jBox/webtrends#readme"
}