-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
{
"name": "validate-variable",
"version": "1.0.0",
"description": "Validate any string as a JavaScript variable name, taking into consideration both the ECMAScript 6 specification and Unicode 8.0.0, as well as reserved words and invalid escape sequences in older engines.",
"module": "./lib",
"main": "./lib",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint index.js",
"build": "webpack --mode=production --no-progress --hide-modules --config=webpack.config.js",
"prepublish": "npm run clean && npm run lint && npm run build"
},
"files": [
"lib",
"src"
],
"keywords": [
"valid",
"validate",
"variable",
"identifier",
"es3",
"es5",
"es2015",
"unicode",
"immutable",
"zero width",
"reserved",
"keyword"
],
"author": "André Ekeberg <[email protected]> (https://andreekeberg.se/en/)",
"bugs": {
"url": "https://github.com/andreekeberg/validate-variable/issues"
},
"homepage": "https://github.com/andreekeberg/validate-variable",
"repository": {
"type": "git",
"url": "git+https://github.com/andreekeberg/validate-variable.git"
},
"license": "GPL-2.0-or-later",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-modules-amd": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.10.4",
"@babel/runtime": "^7.6.2",
"@babel/runtime-corejs3": "^7.6.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.5.0",
"babel-runtime": "^6.26.0",
"core-js": "^3.2.1",
"cross-env": "^5.2.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-node": "^11.1.0",
"rimraf": "^2.6.2",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
}
}