-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "focuz",
"version": "1.0.0",
"description": "React on the fly view builder",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"lint": "eslint src/",
"dist": "rm -rf dist && babel src --out-dir dist --ignore __tests*/",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucaColonnello/focuz.git"
},
"keywords": [
"react",
"render-engine"
],
"author": "Luca Colonnello",
"license": "ISC",
"bugs": {
"url": "https://github.com/LucaColonnello/focuz/issues"
},
"homepage": "https://github.com/LucaColonnello/focuz#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-jest": "^18.0.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"jest": "^18.0.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-test-renderer": "^15.4.1"
},
"peerDependencies": {
"react": "*"
}
}