forked from appleple/form-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "form-storage",
"version": "1.3.0",
"description": "just a simple form storage",
"main": "./lib/index.js",
"scripts": {
"bundle": "browserify ./src/index.js -t babelify -p licensify --standalone FormStorage --outfile ./build/form-storage.js",
"build": "npm run bundle && npm run build:lib",
"build:lib": "babel src --out-dir lib",
"deploy": "np --no-cleanup"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"co": "^4.6.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"fs-extra": "^2.1.2",
"licensify": "^3.1.2",
"node-cmd": "^2.0.0",
"np": "^2.18.3",
"uglifyjs": "^2.4.10",
"watch": "^1.0.1",
"watchify": "^3.7.0"
},
"author": "appleple",
"license": "MIT",
"dependencies": {
"form-serialize": "^0.7.2",
"query-string": "^5.0.1"
}
}