-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.71 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.71 KB
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
{
"name": "form-pages",
"version": "0.0.8-beta",
"description": "A plugin to make paginable forms",
"author": "Júnior Garcia <itamarjr91@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"ava": "^1.4.1",
"babel-eslint": "^10.0.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-fbjs": "^3.1.0",
"eslint-config-jquery": "^1.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"foodoc": "^0.0.9",
"husky": "^1.3.1",
"jsdoc": "3.5.5",
"postcss": "^7.0.14",
"puppeteer": "^1.14.0",
"rollup": "^1.7.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-sass": "^1.1.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-strip": "^1.2.1",
"rollup-plugin-uglify": "^6.0.2"
},
"main": "dist/form-pages.js",
"files": [
"dist/form-pages.css"
],
"dependencies": {},
"peerDependencies": {
"jquery": "> 2"
},
"scripts": {
"build": "rollup --config --environment BUILD:development",
"build:production": "rollup --config --environment BUILD:production",
"watch": "rollup --config --watch --environment BUILD:development,WATCH",
"generate:doc": "jsdoc ./src/form-pages.js ./src/utils.js ./README.md --configure jsdoc.json",
"test": "BABEL_ENV=test ava"
},
"husky": {
"hooks": {
"pre-commit": "eslint src/**/*.js test/**/*.js --fix && yarn build && yarn build:production && yarn generate:doc && git add docs dist",
"pre-push": "yarn test"
}
}
}