-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.85 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
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
{
"name": "modulo-x",
"version": "2.1.1",
"description": "modulo - floored division implementation.",
"homepage": "https://github.com/Xotic750/modulo-x",
"author": {
"name": "Graham Fairweather",
"email": "[email protected]"
},
"copyright": "Copyright (c) 2017",
"keywords": [
"math",
"modulo",
"floored-division",
"module",
"javascript",
"nodejs",
"browser"
],
"files": [
"dist",
"src"
],
"module": "dist/modulo-x.esm.js",
"main": "dist/modulo-x.js",
"jsdelivr": "dist/modulo-x.min.js",
"scripts": {
"build:esm": "mkdirp dist && babel -s true --env-name esm src/modulo-x.js -o dist/modulo-x.esm.js",
"build:base": "webpack --bail --progress --profile --colors",
"build": "npm run build:esm && cross-env NODE_ENV=production npm run build:base --",
"build:dev": "npm run build:base --",
"clean": "rimraf dist && npm run clean:coverage",
"clean:coverage": "rimraf __tests__/coverage",
"lint": "eslint -f 'node_modules/eslint-friendly-formatter' --ext .js,.json .",
"lint-fix": "npm run lint -- --fix",
"report": "npm run build -- --env.report",
"report:dev": "npm run build:dev -- --env.report",
"security": "npm audit",
"security-fix": "npm run security -- fix",
"start": "nodemon --exec \"npm run build\" --watch src",
"test": "npm run clean:coverage && jest",
"test:ci": "npm run test -- --ci --maxWorkers=2",
"test:ci-coveralls": "npm run test:ci -- --coverage --coverageReporters=text-lcov | coveralls",
"test:coverage": "npm run test -- --coverage"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Xotic750/modulo-x.git"
},
"bugs": {
"url": "https://github.com/Xotic750/modulo-x/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-transform-property-mutators": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@types/jest": "^25.1.1",
"@types/node": "^13.5.2",
"@types/webpack": "^4.41.3",
"@xotic750/eslint-config-recommended": "^1.2.1",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"caniuse-lite": "^1.0.30001023",
"coveralls": "^3.0.9",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsdoc": "^20.3.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-no-use-extend-native": "^0.4.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sort-class-members": "^1.6.0",
"eslint-plugin-switch-case": "^1.1.2",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"jest-file": "^1.0.0",
"lodash": "^4.17.15",
"lodash-webpack-plugin": "^0.11.5",
"mkdirp": "^1.0.3",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"source-map-loader": "^0.2.4",
"strip-ansi": "^6.0.0",
"terser-webpack-plugin": "^2.3.3",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-global-object-x": "^1.0.0",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": ">=8.11.4",
"npm": ">=6.10.1"
},
"browserslist": [
"> 1%",
"Explorer >= 9"
]
}