-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "dom-form-serializer",
"version": "2.0.0",
"description": "Serialize form inputs",
"main": "dist/dom-form-serializer.js",
"module": "dist/dom-form-serializer.mjs",
"jsnext:main": "dist/dom-form-serializer.mjs",
"files": [
"lib",
"dist"
],
"scripts": {
"prebuild": "./node_modules/.bin/standard",
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "mocha --compilers js:babel-register test/*.js",
"prepublish": "npm run build && npm test"
},
"author": "Jeferson Daniel",
"license": "MIT",
"keywords": [
"form",
"serialize",
"client",
"browser"
],
"repository": {
"type": "git",
"url": "https://github.com/jefersondaniel/dom-form-serializer.git"
},
"devDependencies": {
"babel-register": "^6.14.0",
"babel-preset-es2015": "^6.13.2",
"babel-plugin-external-helpers": "^6.8.0",
"chai": "^3.5.0",
"domify": "^1.4.0",
"jsdom": "16.5.0",
"jsdom-global": "2.1.0",
"mocha": "^3.0.2",
"standard": "^8.0.0",
"babelrc-rollup": "^3.0.0",
"rollup": "^0.34.7",
"rollup-plugin-babel": "^2.6.1",
"rollup-watch": "^2.5.0"
},
"dependencies": {},
"standard": {
"ignore": [
"dist"
]
}
}