-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.05 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.05 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "searchandiser-ui",
"version": "0.2.54",
"description": "UI components for the GroupBy Searchandiser API.",
"typings": "dist/src/pkg-index.d.ts",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"postinstall": "typings install",
"clean": "rimraf docs coverage dist node_modules typings",
"pretest": "rimraf coverage",
"prepush": "npm test",
"test": "NODE_ENV=test karma start",
"test+coverage": "NODE_ENV=test karma start && npm run coverage && npm run coverage:codacy",
"posttest": "npm run coverage",
"coverage": "npm run coverage:remap && npm run coverage:report",
"coverage:remap": "remap-istanbul -i coverage/coverage.json -o coverage/coverage.json -t json -e node_modules,test,karma.entry.ts",
"coverage:report": "istanbul report",
"coverage:codacy": "cat ./coverage/lcov.info | codacy-coverage",
"e2e": "./test/e2e/run.sh",
"e2e:ci": "./test/e2e/run.sh --env firefox",
"e2e:headless": "./test/e2e/run.sh --env phantomjs",
"e2e:all": "./test/e2e/run.sh --env chrome,firefox",
"build": "webpack",
"prod": "NODE_ENV=production webpack",
"watch": "webpack --watch",
"knit": "npm run watch",
"package": "./package.sh",
"ts:build": "tsc --outDir dist",
"riot:build": "riot --config riot.config",
"ci": "NODE_ENV=ci karma start --singleRun=false",
"docs": "rimraf docs && typedoc --options ./typedoc.json ./src",
"license": "node licenseChecker.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/groupby/searchandiser-ui.git"
},
"keywords": [
"typescript",
"library"
],
"author": "Ben Teichman",
"license": "MIT",
"bugs": {
"url": "https://github.com/groupby/searchandiser-ui/issues"
},
"homepage": "https://github.com/groupby/searchandiser-ui#readme",
"devDependencies": {
"awesome-typescript-loader": "^2.2.4",
"babel-core": "^6.24.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-riot": "^1.1.0",
"chai": "^3.2.0",
"chromedriver": "^2.24.1",
"clean-webpack-plugin": "^0.1.10",
"codacy-coverage": "^2.0.0",
"css-loader": "^0.23.1",
"expose-loader": "^0.7.1",
"file-loader": "^0.9.0",
"gb-license-check": "^1.0.1",
"geckodriver": "^1.2.0",
"http-server": "^0.9.0",
"husky": "^0.13.1",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"karma": "^1.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sinon-chai": "^1.2.4",
"karma-source-map-support": "^1.2.0",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.2",
"mocha-suite": "^1.0.6",
"nightwatch": "^0.9.8",
"object-assign": "^4.1.0",
"phantomjs-prebuilt": "^2.1.14",
"remap-istanbul": "^0.6.4",
"rimraf": "^2.5.4",
"riot-cli": "^3.0.0",
"riot-tag-loader": "^1.0.0",
"script-loader": "^0.7.0",
"selenium-server-standalone-jar": "^3.0.1",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"source-map-loader": "^0.1.5",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"style-loader": "^0.13.1",
"ts-helpers": "^1.1.1",
"tslint-eslint-rules": "^1.3.0",
"tslint-loader": "^2.1.5",
"typedoc": "^0.4.5",
"typescript": "2.0.2",
"typings": "^1.3.3",
"unminified-webpack-plugin": "^1.1.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
},
"dependencies": {
"array-includes": "^3.0.2",
"array.from": "^1.0.3",
"array.of": "^0.1.1",
"clone": "^1.0.2",
"debounce": "^1.0.0",
"es6-symbol": "^3.1.0",
"escape-string-regexp": "^1.0.5",
"filter-object": "^2.1.0",
"gb-tracker-client": "^3.3.1",
"groupby-api": "^1.0.83",
"js-cookie": "^2.1.3",
"oget": "^1.0.6",
"parseUri": "^1.2.3-2",
"query-string": "^4.2.2",
"riot": "^3.0.3",
"sayt": "^0.1.7",
"string.prototype.repeat": "^0.2.0",
"string.prototype.startswith": "^0.2.0",
"uuid": "^3.0.0"
},
"babel": {
"presets": [
"es2015-riot"
]
}
}