-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "passable",
"version": "8.0.0",
"description": "Isomorphic Data Model Validations.",
"main": "./dist/passable.min.js",
"typings": "index.d.ts",
"author": "Evyatar <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup --config config/rollup.js -m",
"pretest": "npm run build",
"test": "mocha --file ./config/test-setup.js --require ./config/babel-register.js --colors \"./src/**/*spec.js\"",
"eslint": "eslint -c .eslintrc \"./src/**/*.js\"; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiverr/passable.git"
},
"bugs": {
"url": "https://github.com/fiverr/passable/issues"
},
"homepage": "https://fiverr.github.io/passable/",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"anyone": "0.0.5",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"date-fns": "^2.0.1",
"eslint": "^7.29.0",
"eslint-loader": "^4.0.2",
"faker": "^5.5.3",
"lodash": "^4.17.15",
"mocha": "^9.0.3",
"n4s": "0.4.1",
"node-fetch": "^2.6.0",
"regenerator-runtime": "^0.13.3",
"rollup": "^2.55.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.0.0",
"semver": "^7.3.5",
"sinon": "^11.1.1",
"typescript": "^4.3.5"
}
}