-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.55 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
{
"name": "gaws",
"version": "0.1.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install-types": "npm run install-adwords-scripts-typings && npm run install-html-css-typings && npm run install-gaws-typings",
"install-adwords-scripts-typings": "typings install file:typings/adwords-scripts/adwords-scripts.d.ts --save --global",
"install-html-css-typings": "typings install file:typings/html-css/html-css.d.ts --save --global",
"install-gaws-typings": "typings install file:typings/gaws/gaws.d.ts --save --global",
"build:dist": "npm run build:dist:core && npm run build:dist:html && npm run build:dist:utils && npm run build:dist:gaws",
"build:dist:core": "NODE_ENV=production rollup -c --environment entry:core/index",
"build:dist:gaws": "NODE_ENV=production rollup -c --environment entry:gaws/index",
"build:dist:html": "NODE_ENV=production rollup -c --environment entry:html/index",
"build:dist:utils": "NODE_ENV=production rollup -c --environment entry:utils/index",
"build:dev": "rollup -c --environment entry:gaws/index",
"build:watch": "rollup -c -w --environment entry:gaws/test",
"publish": "npm run build:dist && lerna bootstrap && git add . && lerna publish"
},
"keywords": [],
"author": "Jonathan Faircloth",
"license": "MIT",
"devDependencies": {
"@types/google-adwords-scripts": "^1.0.0",
"@types/google-apps-script": "0.0.13",
"gulp-uglify": "^3.0.0",
"lerna": "^2.0.0",
"rollup-plugin-angular": "^0.4.4",
"rollup-plugin-cleanup": "^1.0.1",
"rollup-plugin-collect-sass": "^1.0.9",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-jsx": "^1.0.3",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^0.5.4",
"rollup-plugin-posthtml": "^1.0.1",
"rollup-plugin-pug-html": "0.0.2",
"rollup-plugin-scss": "^0.3.0",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-typescript2": "^0.5.2",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"typescript": "^2.4.2"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/algoliasearch": "^3.18.2",
"@types/synaptic": "^1.0.3",
"algoliasearch": "^3.24.3",
"brain.js": "^1.0.0-rc.3",
"core-js": "^2.5.1",
"deeplearn": "^0.2.4",
"elasticsearch": "^13.3.1",
"neataptic": "^1.4.5",
"synaptic": "^1.1.3",
"thoughtful": "^1.7.2"
}
}