forked from algolia/instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "create-instantsearch-app",
"version": "7.5.1",
"license": "MIT",
"description": "⚡️ Build InstantSearch apps at the speed of thought",
"keywords": [
"algolia",
"instantsearch"
],
"repository": "algolia/instantsearch",
"author": "Algolia <[email protected]>",
"main": "index.js",
"bin": {
"create-instantsearch-app": "src/cli/index.js"
},
"scripts": {
"start": "node src/cli/index.js",
"test": "jest --no-color src && yarn run test:e2e",
"test:e2e:templates": "jest e2e/templates.test.js",
"test:e2e:installs": "jest e2e/installs.test.js",
"test:e2e": "yarn run test:e2e:templates && yarn run test:e2e:installs",
"format": "prettier --write *.{js,md,json}",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release-templates": "node ./scripts/release-templates",
"release": "shipjs prepare"
},
"files": [
"index.js",
"src"
],
"engines": {
"node": ">= 10"
},
"dependencies": {
"@algolia/cache-in-memory": "4",
"@metalsmith/in-place": "4.6.0",
"@metalsmith/remove": "1.3.0",
"algoliasearch": "4",
"chalk": "3.0.0",
"commander": "4.1.1",
"inquirer": "8.2.0",
"jstransformer-handlebars": "1.1.0",
"load-json-file": "6.2.0",
"lodash.camelcase": "4.3.0",
"metalsmith": "2.5.1",
"metalsmith-rename": "1.0.0",
"prettier": "^2.4.1",
"semver": "6.1.1",
"validate-npm-package-name": "3.0.0"
},
"devDependencies": {
"@instantsearch/testutils": "1.27.0",
"jest-image-snapshot": "2.12.0",
"walk-sync": "2.0.2"
}
}