UNPKG

3.98 kBJSONView Raw
1{
2 "name": "white-space-x",
3 "version": "4.1.1",
4 "description": "List of ECMAScript white space characters.",
5 "homepage": "https://github.com/Xotic750/white-space-x",
6 "author": {
7 "name": "Graham Fairweather",
8 "email": "xotic750@gmail.com"
9 },
10 "copyright": "Copyright (c) 2015-present",
11 "keywords": [
12 "whitespaces",
13 "RegExp",
14 "module",
15 "javascript",
16 "nodejs",
17 "browser"
18 ],
19 "files": [
20 "dist",
21 "src"
22 ],
23 "module": "dist/white-space-x.esm.js",
24 "main": "dist/white-space-x.js",
25 "jsdelivr": "dist/white-space-x.min.js",
26 "scripts": {
27 "build:esm": "mkdirp dist && babel -s true --env-name esm src/white-space-x.js -o dist/white-space-x.esm.js",
28 "build:base": "webpack --bail --progress --profile --colors",
29 "build": "npm run build:esm && cross-env NODE_ENV=production npm run build:base --",
30 "build:dev": "npm run build:base --",
31 "clean": "rimraf dist && npm run clean:coverage",
32 "clean:coverage": "rimraf __tests__/coverage",
33 "lint": "eslint -f 'node_modules/eslint-friendly-formatter' --ext .js,.json .",
34 "lint-fix": "npm run lint -- --fix",
35 "report": "npm run build -- --env.report",
36 "report:dev": "npm run build:dev -- --env.report",
37 "security": "npm audit",
38 "security-fix": "npm run security -- fix",
39 "start": "nodemon --exec \"npm run build\" --watch src",
40 "test": "npm run clean:coverage && jest",
41 "test:ci": "npm run test -- --ci --maxWorkers=2",
42 "test:ci-coveralls": "npm run test:ci -- --coverage --coverageReporters=text-lcov | coveralls",
43 "test:coverage": "npm run test -- --coverage"
44 },
45 "license": "MIT",
46 "repository": {
47 "type": "git",
48 "url": "https://github.com/Xotic750/white-space-x.git"
49 },
50 "bugs": {
51 "url": "https://github.com/Xotic750/white-space-x/issues"
52 },
53 "dependencies": {},
54 "devDependencies": {
55 "@babel/cli": "^7.5.5",
56 "@babel/core": "^7.5.5",
57 "@babel/node": "^7.5.5",
58 "@babel/plugin-transform-property-mutators": "^7.2.0",
59 "@babel/plugin-transform-runtime": "^7.5.5",
60 "@babel/preset-env": "^7.5.5",
61 "@babel/runtime": "^7.5.5",
62 "@types/jest": "^24.0.18",
63 "@types/node": "^12.7.2",
64 "@types/webpack": "^4.39.1",
65 "@xotic750/eslint-config-recommended": "^1.1.8",
66 "babel-core": "^7.0.0-0",
67 "babel-eslint": "^10.0.3",
68 "babel-loader": "^8.0.6",
69 "babel-plugin-lodash": "^3.3.4",
70 "caniuse-lite": "^1.0.30000989",
71 "coveralls": "^3.0.6",
72 "cross-env": "^5.2.0",
73 "eslint": "^6.2.2",
74 "eslint-friendly-formatter": "^4.0.1",
75 "eslint-import-resolver-webpack": "^0.11.1",
76 "eslint-loader": "^3.0.0",
77 "eslint-plugin-babel": "^5.3.0",
78 "eslint-plugin-compat": "^3.3.0",
79 "eslint-plugin-css-modules": "^2.11.0",
80 "eslint-plugin-eslint-comments": "^3.1.2",
81 "eslint-plugin-html": "^6.0.0",
82 "eslint-plugin-import": "^2.18.2",
83 "eslint-plugin-jest": "^22.15.2",
84 "eslint-plugin-jsdoc": "^15.8.3",
85 "eslint-plugin-json": "^1.4.0",
86 "eslint-plugin-lodash": "^6.0.0",
87 "eslint-plugin-no-use-extend-native": "^0.4.1",
88 "eslint-plugin-prefer-object-spread": "^1.2.1",
89 "eslint-plugin-prettier": "^3.1.0",
90 "eslint-plugin-promise": "^4.2.1",
91 "eslint-plugin-sort-class-members": "^1.6.0",
92 "eslint-plugin-switch-case": "^1.1.2",
93 "jest": "^24.9.0",
94 "jest-cli": "^24.9.0",
95 "jest-file": "^1.0.0",
96 "lodash": "^4.17.15",
97 "lodash-webpack-plugin": "^0.11.5",
98 "mkdirp": "^0.5.1",
99 "nodemon": "^1.19.1",
100 "prettier": "^1.18.2",
101 "rimraf": "^3.0.0",
102 "source-map-loader": "^0.2.4",
103 "strip-ansi": "^5.2.0",
104 "terser-webpack-plugin": "^1.4.1",
105 "typescript": "^3.5.3",
106 "webpack": "^4.39.3",
107 "webpack-bundle-analyzer": "^3.4.1",
108 "webpack-cli": "^3.3.7",
109 "webpack-global-object-x": "^1.0.0",
110 "webpack-merge": "^4.2.2"
111 },
112 "engines": {
113 "node": ">=8.11.4",
114 "npm": "6.10.1"
115 },
116 "browserslist": [
117 "> 1%",
118 "Explorer >= 9"
119 ]
120}