-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "uninformed",
"version": "0.1.3",
"description": "Uncontrolled forms for React & Preact",
"module": "dist/uninformed.js",
"main": "dist/uninformed.cjs.js",
"browser": "dist/uninformed.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/chrisfrank/uninformed.git"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"lint": "prettier src/**/*.js --write --single-quote --trailing-comma es5",
"prepublish" : "npm run build && npm run test",
"postpublish" : "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"start": "npm run build && nodemon example/server.js",
"test": "tap test/**/*.test.js"
},
"keywords": [
"react",
"preact",
"form",
"forms",
"uncontrolled",
"simple"
],
"author": "Chris Frank",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"busboy": "^0.3.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"express": "^4.17.1",
"express-busboy": "^7.0.1",
"form-serialize": "^0.7.2",
"htm": "^2.1.1",
"jsdom": "^15.1.1",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"qs": "^6.7.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"rollup": "^1.2.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^5.0.0",
"tap": "^14.2.0",
"xhr-mock": "^2.4.1"
}
}