-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.14 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "fargs",
"version": "1.1.1",
"author": "Algolia <[email protected]>",
"license": "MIT",
"description": "Simple options manager for JavaScript libraries. Handles type checking, default values assignation and throws generated usage on errors.",
"homepage": "https://github.com/algolia/fargs",
"bugs": {
"url": "https://github.com/algolia/fargs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/fargs.git"
},
"main": "index.js",
"scripts": {
"build:js": "gulp build:js",
"build:js:watch": "gulp build:js:watch",
"build": "gulp build",
"changelog": "gulp changelog",
"clean": "gulp clean",
"dev": "gulp dev",
"lint": "gulp lint",
"release": "./scripts/release.sh",
"start": "npm run dev",
"test:run": "gulp test:run",
"test:watch": "gulp test:watch",
"test:reports": "gulp test:reports",
"test": "gulp test"
},
"keywords": [
"JavaScript",
"options",
"checking",
"types",
"default",
"values",
"validators"
],
"devDependencies": {
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0-beta8",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chalk": "^1.1.1",
"conventional-changelog": "^1.1.0",
"coveralls": "^2.11.6",
"del": "^2.2.0",
"envify": "^3.4.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-config-algolia": "^4.7.0",
"eslint-plugin-algolia": "^1.5.0",
"eslint-plugin-react": "^3.16.1",
"expect": "^1.13.4",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-connect": "^2.3.1",
"gulp-eslint": "^1.1.1",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.2",
"gulp-util": "^3.0.7",
"isparta": "^4.0.0",
"json": "^9.0.3",
"merge-stream": "^1.0.0",
"mochawesome": "^1.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"lodash": "^4.1.0"
}
}