forked from groupby/storefront-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.42 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
85
86
87
88
89
{
"name": "@storefront/core",
"version": "0.0.32-development",
"description": "Core library for StoreFront components",
"repository": {
"type": "git",
"url": "https://github.com/groupby/storefront-core.git"
},
"bugs": {
"url": "https://github.com/groupby/storefront-core/issues"
},
"homepage": "https://github.com/groupby/storefront-core#readme",
"author": "Ben Teichman <ben.teichman@groupbyinc.com>",
"license": "MIT",
"main": "dist/index.js",
"module:esnext": "esnext/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/",
"esnext/",
"src/"
],
"scripts": {
"start": "start-runner -p re-start/presets/typescript",
"build": "npm start build && npm run esnext",
"esnext": "npm start build -- -- --compileOpts.configFile tsconfig.esnext.json --outDir esnext",
"dev": "npm start dev",
"test": "npm start test",
"tdd": "npm start tdd",
"prepush": "npm start prepush",
"prepublish": "npm run build",
"docs": "typedoc src/**/*.ts",
"docs:json": "npm run docs -- --json component.docs.json"
},
"release": {
"verifyConditions": "condition-circle"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"restart": {
"testFiles": [
"test/bootstrap.ts",
"test/unit/**/*.ts"
],
"releaseOpts": {
"public": true
}
}
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.0",
"@types/sinon": "^4.0.0",
"@types/sinon-chai": "^2.7.28",
"chai": "^4.0.0",
"condition-circle": "^1.5.0",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.14.1",
"mocha-suite": "^1.0.11",
"re-start": "^1.14.8",
"sinon": "^4.0.1",
"sinon-chai": "^2.11.0",
"start-simple-cli": "^4.1.1",
"tslint": "^5.2.0",
"tslint-config-groupby": "^1.0.0",
"typedoc": "^0.9.0",
"typescript": "^2.4.2"
},
"dependencies": {
"@storefront/flux-capacitor": "1.39.0",
"@types/clone": "^0.1.30",
"@types/deep-assign": "^0.1.0",
"@types/js-cookie": "^2.0.28",
"@types/lodash": "^4.14.70",
"@types/loglevel": "^1.4.29",
"@types/riot": "^3.6.0",
"clone": "^2.1.1",
"gb-tracker-client": "3.5.5",
"js-cookie": "^2.1.4",
"lodash.camelcase": "^4.3.0",
"lodash.merge": "^4.6.0",
"loglevel": "^1.4.1",
"riot": "^3.4.4",
"url-parse": "^1.1.9"
}
}