-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
57
58
59
60
61
62
63
64
{
"name": "flowtype-es",
"version": "1.0.0",
"description": "No Library version of FlowType.js ",
"author": "Fritz Lekschas",
"keywords": [
"font",
"responsive",
"no library",
"es6",
"FlowType.js"
],
"license": "MIT",
"main": "dist/flowtype-es.js",
"module": "index.js",
"files": [
"index.js",
"dist/flowtype-es.js",
"dist/flowtype-es.min.js"
],
"unpkg": "dist/flowtype-es.min.js",
"dependencies": {
"with-raf": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.2",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.15",
"prettier": "1.14.3",
"pretty-quick": "^1.7.0",
"rollup": "^0.64.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-terser": "^1.0.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
},
"scripts": {
"build": "rollup -c; webpack --config ./webpack.config.js --mode production",
"lint": "eslint index.js rollup.config.js webpack.config.js",
"precommit": "pretty-quick --staged",
"prepublishOnly": "npm run lint",
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
"pretest": "npm run lint",
"start": "webpack-dev-server --config ./webpack.config.js --mode development --open",
"watch": "rollup -cw"
},
"homepage": "https://github.com/flekschas/flowtype",
"repository": {
"type": "git",
"url": "git://github.com/flekschas/flowtype.git"
},
"bugs": {
"url": "https://github.com/flekschas/flowtype/issues"
}
}