-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (91 loc) · 2.41 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "json-google-docs",
"version": "0.2.1",
"description": "Uses Google Apps Scripts with Google Docs to provide a document tree in JSON exposed on a GET URL for integration into anything.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"author": "colingagnon",
"license": "MIT",
"repository": "techcoop/json-google-docs",
"keywords": [
"techcoop",
"google",
"docs",
"json",
"api",
"webpack",
"babel",
"library",
"AMD",
"UMD"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.18.0",
"better-npm-run": "^0.1.0",
"conventional-changelog": "^1.1.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"fs-extra-promise": "^1.0.1",
"jest-cli": "^21.0.2",
"node-sass": "^4.0.0",
"postcss-loader": "^1.2.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"sitemap": "^1.12.0",
"standard-version": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^3.0.0"
},
"files": [
"LICENSE",
"README.md",
"lib/",
"out/"
],
"scripts": {
"preversion": "yarn test",
"lint": "eslint src/**/*.js",
"pretest": "yarn run lint",
"test": "jest",
"watch": "jest --watchAll",
"docs": "echo \"TODO docs\"",
"clean": "rimraf lib rimraf out",
"compile:amd": "better-npm-run compile:amd",
"compile:umd": "better-npm-run compile:umd",
"compile:docs": "better-npm-run compile:docs",
"start": "yarn run compile -- --watch",
"release": "yarn run lint yarn run clean && yarn test && yarn run compile:amd && yarn run compile:umd && yarn run compile:docs && standard-version"
},
"betterScripts": {
"compile:amd": {
"command": "babel src --ignore __tests__ --out-dir lib",
"env": {
"NODE_ENV": "production"
}
},
"compile:umd": {
"command": "webpack",
"env": {
"NODE_ENV": "production"
}
},
"compile:docs": {
"command": "yarn run compile:umd && cp -r out/* docs",
"env": {
"NODE_ENV": "production"
}
}
},
"dependencies": {
"xhr2": "^0.1.4"
}
}