-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "dreamsheets",
"version": "2.0.3",
"description": "Make working with gsheets a dream",
"homepage": "https://product-os.github.io/dreamsheets",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"gsheets",
"google sheets",
"google-app-scripts",
"typescript"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/product-os/dreamsheets.git"
},
"bugs": {
"url": "https://github.com/product-os/dreamsheets/issues"
},
"files": [
"build/"
],
"scripts": {
"clean": "rimraf build",
"prebuild": "npm run clean",
"build": "npm run lint && tsc",
"watch": "npm run build -- --watch",
"lint": "balena-lint --typescript --fix lib tests",
"test:node": "mocha -r ts-node/register --reporter spec tests/**/*.spec.ts",
"test": "npm run build && npm run test:node",
"test:fast": "npm run build && npm run test:node",
"prepack": "npm run build",
"doc": "typedoc lib/ && touch docs/.nojekyll"
},
"devDependencies": {
"@balena/lint": "^6.2.1",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/google-apps-script": "^1.0.56",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"versionist": {
"publishedAt": "2024-09-30T11:14:05.010Z"
}
}