-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.83 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
{
"name": "sort.js",
"description": "Sort algorithms for JavaScript",
"version": "0.0.1",
"author": {
"name": "Matt Traynham",
"email": "[email protected]"
},
"keywords": [
"sorts"
],
"bugs": {
"url": "https://github.com/mtraynham/sort.js/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mtraynham/sort.js.git"
},
"files": [
"index.js",
"LICENSE",
"README.md",
"dist/",
"lib/"
],
"main": "dist/sort.js",
"scripts": {
"all": "npm run lint && npm run test && npm run build && npm run benchmark",
"build": "webpack --config-name dist",
"lint": "eslint benchmark/**/*.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=ts-node/register lib/**/*.spec.ts",
"test": "npm run test:browser && npm run test:node",
"benchmark": "node --require=ts-node/register benchmark/sort.ts",
"debug": "webpack-dev-server --open --config-name debug",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@types/benchmark": "~1.0",
"@types/chance": "~1.1",
"@types/html-webpack-plugin": "~3.2",
"@types/jasmine": "~3.5",
"@types/karma": "~5.0",
"@types/karma-coverage-istanbul-reporter": "~2.1",
"@types/karma-webpack": "~2.0",
"@types/lodash": "^4",
"@types/webpack": "~4.41",
"@types/webpack-dev-server": "~3.11",
"@types/webpack-env": "~1.15",
"@typescript-eslint/eslint-plugin": "~3.7",
"@typescript-eslint/parser": "~3.7",
"benchmark": "~2.1",
"chance": "~1.1",
"clean-webpack-plugin": "~3.0",
"eslint": "~7.6",
"eslint-plugin-import": "~2.22",
"eslint-plugin-jasmine": "~4.1",
"fork-ts-checker-webpack-plugin": "~5.0",
"html-webpack-plugin": "~4.3",
"import": "~0.0",
"istanbul-instrumenter-loader": "~3.0",
"jasmine": "~3.6",
"jasmine-spec-reporter": "~5.0",
"karma": "~5.1",
"karma-chrome-launcher": "~3.1",
"karma-coverage-istanbul-reporter": "~3.0",
"karma-firefox-launcher": "~1.3",
"karma-jasmine": "~3.3",
"karma-jasmine-html-reporter": "~1.5",
"karma-sourcemap-loader": "~0.3",
"karma-spec-reporter": "~0.0",
"karma-webpack": "~4.0",
"lodash": "~4.17",
"ts-loader": "~8.0",
"ts-node": "~8.10",
"typescript": "~3.9",
"webpack": "~4.44",
"webpack-cli": "~3.3",
"webpack-dev-server": "~3.11"
}
}