-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 3.09 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
{
"name": "gsheets-gm-functions",
"version": "0.12.0",
"description": "Gapminder-specific custom functions for Google Spreadsheets",
"main": "src/index.js",
"dependencies": {
"@types/lodash": "^4.14.162",
"diacritics": "^1.3.0",
"dotenv-webpack": "^7.0.3",
"everpolate": "github:gapminder/everpolate#additional-interpolation-implementations",
"gas-entry-generator": "github:motin/gas-entry-generator#include-params",
"lodash": "^4.17.20",
"weighted-mean": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-member-expression-literals": "^7.12.1",
"@babel/plugin-transform-object-assign": "^7.12.1",
"@babel/plugin-transform-property-literals": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@google/clasp": "^2.3.0",
"@types/google-apps-script": "0.0.35",
"@types/node": "^10.17.43",
"ava": "^3.13.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-array-includes": "^2.0.3",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^6.2.1",
"csv-parse": "^4.12.0",
"es3ify-webpack-plugin": "^0.0.1",
"gas-lib": "^2.0.4",
"gas-webpack-plugin": "^1.2.0",
"prettier": "^1.19.1",
"sync-request": "^6.1.0",
"ts-loader": "^5.4.5",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^3.9.7",
"watch": "^1.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "webpack",
"deploy": "npm run format && npm run build && npm run push && npm run docs && npm run lint",
"docs": "typedoc --theme markdown --excludeExternals --externalPattern \"**/node_modules/**\" --mode file --ignoreCompilerErrors --out docs --gitRevision v$npm_package_version --readme none src && ./tweak-generated-docs.sh",
"format": "prettier \"src/**/*.ts\" --write",
"lint": "tslint -t verbose --fix --project .",
"push": "cp .clasp.tpl.json .clasp.json && clasp setting scriptId \"1F7xx7wGe-ylQVAbWC_F-WnnEdxlatnmttMBqs81K618bVGTtsmzyoKCz\" && clasp push && clasp setting scriptId \"13U130ySjgtSjgcPLM4483Ae_cUXQGKuJowvjD3s-9qh-q8YhddJNnjyR\" && clasp push",
"watch": "watch 'npm run build && npm run push' src/",
"test": "npm run format && npm run test:ava && npm run build && npm run docs && npm run lint",
"test:ava": "ava --verbose"
},
"ava": {
"failFast": true,
"timeout": "30s",
"files": [
"src/**/*.spec.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"dotenv/config"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gapminder/gsheets-gm-functions.git"
},
"author": "Gapminder Foundation",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gapminder/gsheets-gm-functions/issues"
},
"homepage": "https://github.com/Gapminder/gsheets-gm-functions#readme"
}