forked from mixmaxhq/frecency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "@getstation/frecency",
"version": "1.6.0",
"description": "Frecency sorting for search results.",
"main": "dist/main.js",
"browser": {
"./index.js": "dist/browser.js"
},
"files": [
"types",
"dist",
"src"
],
"types": "types/index.d.ts",
"scripts": {
"ci": "npm run lint && npm run build",
"lint": "eslint .",
"prettier": "prettier '**/*.{js,jsx,ts,tsx}' --write",
"lint:flow": "flow",
"tsc": "tsc --noEmit -p .",
"lint:all": "yarn run lint && yarn run lint:flow && yarn run tsc",
"prebuild": "rm -rf dist/",
"build": "[ \"$WATCH\" == 'true' ] && rollup -cw || rollup -c",
"test": "npm run build && jest",
"test:all": "npm run lint:all && npm run test",
"watch": "WATCH=true yarn build",
"prepublishOnly": "npm run test:all && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/frecency.git"
},
"author": "Mixmax <[email protected]> (https://mixmax.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/frecency/issues"
},
"homepage": "https://github.com/mixmaxhq/frecency#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.19.1",
"eslint-config-mixmax": "^1.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"flow-bin": "^0.75.0",
"fsevents": "^2.1.3",
"jest": "^22.4.3",
"prettier": "^2.0.5",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-replace": "^2.0.0",
"typescript": "^3.9.6"
}
}