-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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
{
"name": "@sleepez/shopify-js",
"license": "AGPL-3.0",
"version": "0.0.3",
"browser": "dist/main.js",
"main": "dist/main.js",
"types": "dist/build/index.d.ts",
"dependencies": {
"localforage": "^1.7.1"
},
"devDependencies": {
"@types/core-js": "^0.9.44",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^22.2.3",
"fetch-mock": "^6.4.2",
"gts": "^0.6.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^23.0.1",
"shx": "^0.2.2",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"ts-node": "^6.0.5",
"typedoc": "^0.11.1",
"typescript": "^2.8.3",
"webpack": "^4.10.1",
"webpack-cli": "^2.1.4"
},
"scripts": {
"compile": "webpack",
"watch": "webpack --progress --watch",
"check": "gts check",
"clean": "gts clean",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"test": "jest",
"posttest": "npm run check",
"docs": "typedoc --excludePrivate --exclude **/*.test.ts --name \"Shopify-JS\" --out docs/ src/",
"postdocs": "shx cp .nojekyll docs/.nojekyll"
},
"jest": {
"collectCoverage": true,
"mapCoverage": true,
"roots": [
"src/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.|/)(test|spec)\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"skipBabel": true
}
}
}
}