-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "lgtm",
"version": "0.0.0-development",
"description": "Simple JavaScript validation for objects.",
"main": "dist/lgtm.js",
"jsnext:main": "dist/lgtm.mjs",
"scripts": {
"lint": "eslint .",
"build": "rm -rf dist && script/build",
"pretest": "npm run lint",
"test": "mocha",
"prepublish": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/square/lgtm.git"
},
"keywords": [
"validation"
],
"author": "Square, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-external-helpers": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"babel-eslint": "^10.1.0",
"eslint": "^5",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"file-size": "^1.0.0",
"gzip-size": "^5.1.1",
"mocha": "^6",
"prettier": "^1.19.1",
"rollup": "^1",
"rollup-plugin-babel": "^4.4.0",
"uglify-js": "^3.9.4"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}