-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.33 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
{
"name": "commerce.js",
"version": "2.0.23",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shopjs/commerce.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "13.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "8.0.1",
"@types/jest": "26.0.0",
"babel-jest": "26.0.1",
"cross-fetch": "^3.0.5",
"jest": "26.0.1",
"node-eval": "^2.0.0",
"rollup": "2.15.0",
"rollup-plugin-filesize": "9.0.0",
"rollup-plugin-peer-deps-external": "2.2.2",
"rollup-plugin-typescript2": "0.27.1",
"rollup-plugin-visualizer": "4.0.4",
"source-map-explorer": "2.4.2",
"source-map-support": "0.5.19",
"ts-jest": "26.1.0",
"ts-node": "8.10.2",
"tslib": "2.0.0",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "2.3.1",
"typescript": "3.9.5"
},
"scripts": {
"audit": "node_modules/.bin/source-map-explorer dist/index.js",
"prepublishOnly": "npm run build",
"clean:js": "rm -rf dist",
"clean:docs": "rm -rf docs",
"build": "npm run clean:js && npm run build:js && npm run build:types && npm run build:docs",
"build:js": "npm run clean:js && node_modules/.bin/rollup -c",
"build:docs": "npm run clean:docs && node_modules/.bin/typedoc --out docs --exclude '**/*+(test).ts' src",
"build:types": "tsc -p ./tsconfig.docs.json --emitDeclarationOnly",
"build:watch": "node_modules/.bin/rollup -c -w",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"lint:watch": "npm run lint -- --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "node_modules/.bin/jest --detectOpenHandles",
"test:coverage": "node_modules/.bin/jest --collect-coverage"
},
"renovate": {
"extends": [
"config:js-lib"
],
"automerge": true,
"major": {
"automerge": false
},
"automergeType": "branch"
},
"directories": {
"src": "src",
"dist": "dist"
},
"files": [
"src",
"dist"
],
"browserslist": [
"defaults"
],
"dependencies": {
"akasha": "0.1.13",
"mobx": "5.15.4",
"npm-check-updates": "7.0.1"
},
"peerDependencies": {
"hanzo.js": "^2.5.13"
}
}