-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "@fratercula/owl",
"version": "0.1.1",
"description": "React layout interpreter",
"main": "lib/index.js",
"keywords": [
"react",
"layout"
],
"unpkg": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"start": "falco -c -m entry/index.js",
"umd": "NODE_ENV=umd falco -c -m src/index.js -o lib",
"docs": "NODE_ENV=docs falco -c -m entry/index.js -o docs",
"build": "npm run docs && npm run umd",
"prebuild": "rm -rf docs",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fratercula/owl.git"
},
"author": "LoeiFy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fratercula/owl/issues"
},
"homepage": "https://github.com/fratercula/owl#readme",
"peerDependencies": {
"react": "*"
},
"dependencies": {
"prop-types": "*"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4"
}
}