-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "focus-file",
"version": "1.0.0",
"description": "Focus file add on.",
"main": "index.js",
"scripts": {
"build": "better-npm-run babelify",
"prepublishOnly": "npm run build",
"fix-lint": "eslint src/** --ext .js,.jsx --fix --ignore-pattern __tests__ --ignore-pattern example"
},
"betterScripts": {
"babelify": {
"command": "babel src/ --out-dir . && (test -d \"component/style/\" || mkdir \"component/style/\") && cp -r ./src/component/style/index.scss ./component/style/index.scss",
"env": {
"BABEL_ENV": "production",
"LEGACY_EXPORTS": "true"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/KleeGroup/focus-file"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack"
],
"babel": {
"presets": [
"focus"
]
},
"author": "focus@kleegroup.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/KleeGroup/focus-file/issues"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"prop-types": "^15.6.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-focus": "1.0.0",
"better-npm-run": "0.1.0",
"eslint-config-focus": "0.6.1",
"prop-types": "15.6.1",
"react": "16.2.0",
"react-dom": "16.2.0"
},
"dependencies": {
"dropzone": "5.4.0",
"uuid": "3.2.1"
}
}