-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "@fuelrats/validation-util",
"license": "BSD-3-Clause",
"version": "1.2.0",
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/FuelRats/validation-util.git"
},
"homepage": "https://github.com/FuelRats/validation-util",
"author": {
"name": "Cameron Welter",
"email": "clapton@fuelrats.com",
"url": "https://github.com/UncleClapton"
},
"bugs": {
"url": "https://github.com/FuelRats/validation-util/issues"
},
"scripts": {
"lint": "yarn eslint .",
"test": "jest",
"test:watch": "yarn test --watchAll",
"build": "rm -rf dist && yarn rollup --config",
"prepublish": "yarn test && yarn build"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@fuelrats/eslint-config": "^2.1.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsdoc": "^27.0.7",
"jest": "^26.0.1",
"jest-extended": "^0.11.5",
"rollup": "^2.16.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-externals": "^2.2.0"
},
"dependencies": {}
}