-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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": "simpleparse.js",
"version": "0.0.1",
"description": "Simple JS library for parsing form data and URL parameters",
"main": "dist/index.js",
"author": "Geoff Davis <[email protected]",
"license": "MIT",
"scripts": {
"start": "webpack --watch",
"build": "DIST=true webpack",
"lint": "eslint source",
"flow": "flow check",
"flow:init": "flow",
"test": "npm run lint; npm run flow && clear;",
"serve": "php -S localhost:5001"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.16.1",
"eslint-plugin-flowtype": "^2.30.0",
"flow-babel-webpack-plugin": "^1.0.1",
"flow-bin": "^0.39.0",
"flow-webpack-plugin": "^0.3.6",
"webpack": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fullstax/simpleParse.js.git"
},
"keywords": [
"url",
"parameters",
"form",
"data",
"parse",
"javascript",
"modules"
],
"bugs": {
"url": "https://github.com/fullstax/simpleParse.js/issues"
},
"homepage": "https://github.com/fullstax/simpleParse.js#readme"
}