-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
86 lines (86 loc) · 2.96 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
{
"name": "lodash-joins",
"description": "SQL-like joins for JS",
"version": "3.2.0",
"author": {
"name": "Matt Traynham",
"email": "[email protected]"
},
"keywords": [
"joins"
],
"bugs": {
"url": "https://github.com/mtraynham/lodash-joins/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mtraynham/lodash-joins.git"
},
"files": [
"LICENSE",
"README.md",
"dist/",
"lib/",
"index.ts",
"index.lodash.ts",
"index.lodash.d.ts"
],
"main": "dist/lodash-joins.js",
"types": "index.lodash.d.ts",
"scripts": {
"all": "npm run lint && npm run test && npm run build && npm run benchmark",
"build:joins": "webpack --config-name dist-joins",
"build:lodash-joins": "webpack --config-name dist-lodash-joins",
"build": "npm run build:joins && npm run build:lodash-joins",
"lint": "eslint benchmark/**/*.ts debug/**/*.ts lib/**/*.ts karma.conf.ts webpack.config.ts",
"test:browser": "karma start",
"test:browser:debug": "karma start --single-run=false --browsers Chrome --reporters kjhtml",
"test:node": "jasmine --require=node_modules/ts-node/register/index.js lib/**/*.spec.ts",
"test": "npm run test:node",
"benchmark": "node --require=ts-node/register benchmark/joins.ts",
"debug": "webpack-dev-server --open --config-name debug",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"lodash": "^4"
},
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "~3.0",
"@types/benchmark": "~2.1",
"@types/chance": "~1.1",
"@types/html-webpack-plugin": "~3.2",
"@types/jasmine": "~5.1",
"@types/karma": "~6.3",
"@types/karma-coverage-istanbul-reporter": "~2.1",
"@types/karma-webpack": "~2.0",
"@types/lodash": "^4",
"@types/webpack-env": "~1.18",
"@typescript-eslint/eslint-plugin": "~6.20",
"@typescript-eslint/parser": "~6.20",
"benchmark": "~2.1",
"chance": "~1.1",
"eslint": "~8.56",
"eslint-plugin-import": "~2.29",
"eslint-plugin-jasmine": "~4.1",
"html-webpack-plugin": "~5.6",
"import": "~0.0",
"jasmine": "~5.1",
"jasmine-spec-reporter": "~7.0",
"karma": "~6.4",
"karma-chrome-launcher": "~3.2",
"karma-coverage-istanbul-reporter": "~3.0",
"karma-firefox-launcher": "~2.1",
"karma-jasmine": "~5.1",
"karma-jasmine-html-reporter": "~2.1",
"karma-sourcemap-loader": "~0.4",
"karma-spec-reporter": "~0.0",
"karma-webpack": "~5.0",
"ts-loader": "~9.5",
"ts-node": "~10.9",
"typescript": "~5.3",
"webpack": "~5.90",
"webpack-cli": "~5.1",
"webpack-dev-server": "~4.15"
}
}