-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "websheetjs",
"version": "1.0.0",
"description": "Render website sections with lazy-loaded data from Google Spreadsheets",
"scripts": {
"clean": "rm -rf node_modules build_tmp",
"watch:ts": "npx tsc --watch",
"watch:bundler": "npx watchify build_tmp/index.js --standalone websheet -o build_tmp/websheet.js",
"serve": "npx snowpack dev",
"test": "jest",
"build": "./tools/build.sh",
"purgecdn": "./tools/purge_cdn.sh"
},
"author": "Pierre Avinain",
"license": "ISC",
"devDependencies": {
"@types/jquery": "^3.5.5",
"browserify": "^17.0.0",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jquery": "^3.5.1",
"req": "^0.1.4",
"snowpack": "^2.18.5",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"uglify-es": "^3.3.9",
"watchify": "^4.0.0"
},
"dependencies": {},
"jest": {
"automock": false,
"setupFiles": [
"./tests/_setup.ts"
],
"coveragePathIgnorePatterns": [
"/dist/",
"/docs/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
}
}
}