-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.95 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
{
"name": "awqlqb",
"version": "0.0.2",
"description": "AdWords Query Language query builder for JavaScript",
"main": "index.js",
"scripts": {
"build": "npm run build:clean && npm run build:babel && npm run build:browserify && npm run build:uglify",
"build:clean": "rimraf lib/* dist/*",
"build:babel": "babel src -d lib",
"build:browserify": "browserify src/awqlqb.js -s AWQLQB -t [babelify] -o dist/awqlqb.js",
"build:uglify": "uglifyjs dist/awqlqb.js --comments '/!/' -m screw_ie8=true -c screw_ie8=true,unused=false -o dist/awqlqb.min.js",
"test": "cross-env NODE_ENV=test nyc --reporter=text-summary mocha --compilers js:babel-register test/**/*.test.js",
"coverage": "nyc report --reporter=html",
"lint": "eslint src test"
},
"files": [
"index.js",
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lili668668/awqlqb.git"
},
"keywords": [
"adwords",
"AWQL",
"google ads",
"query",
"builder"
],
"author": "Tzu-Yin Hong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lili668668/awqlqb/issues"
},
"homepage": "https://github.com/lili668668/awqlqb#readme",
"dependencies": {
"moment": "^2.22.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^3.1.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"cross-env": "^3.1.4",
"eslint": "^3.10.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.2",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"nyc": "^10.0.0",
"rimraf": "^2.5.4",
"uglify-js": "^2.7.3"
},
"engines": {
"node": ">=4"
}
}