forked from airbnb/react-sketchapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.27 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-sketchapp",
"version": "1.0.0-beta.5",
"description": "A React renderer for Sketch.app",
"main": "lib/index.js",
"license": "MIT",
"author": "Jon Gold <[email protected]> (http://jon.gold)",
"contributors": [
"Ben Wilkins <[email protected]>",
"Leland Richardson <[email protected]>"
],
"pre-commit": "lint-staged",
"scripts": {
"build:react": "babel src -d lib --ignore **/__mocks__/**",
"build:flow": "flow-copy-source -v -i '**/__tests__/**' src lib",
"build": "npm run build:react && npm run build:flow",
"clean": "rimraf lib react-example.sketchplugin",
"check": "npm run test && npm run flow && npm run lint",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git fetch [email protected]:airbnb/react-sketchapp.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push [email protected]:airbnb/react-sketchapp.git gh-pages --force",
"flow": "flow",
"lint": "eslint .",
"lint-staged": "lint-staged",
"prepublishOnly": "npm run clean && npm run check && npm run build",
"test": "jest --config .jestrc",
"test:ci": "jest --config .jestrc --runInBand",
"test:watch": "npm run test -- --watch",
"watch": "npm run build:react -- --watch",
"postinstall": "npm run yogafix",
"yogafix": "node ./yogafix"
},
"dependencies": {
"error-stack-parser": "^2.0.0",
"invariant": "^2.2.2",
"murmur2js": "^1.0.0",
"normalize-css-color": "^1.0.1",
"prop-types": "^15.5.8",
"sketch-constants": "^1.0.2",
"sketchapp-json-flow-types": "^0.2.0",
"sketchapp-json-plugin": "^0.1.2",
"yoga-layout": "1.6.0"
},
"peerDependencies": {
"react": "*",
"react-test-renderer": "*"
},
"keywords": [
"sketch",
"sketchapp",
"react",
"reactjs",
"renderer"
],
"repository": {
"type": "git",
"url": "https://github.com/airbnb/react-sketchapp"
},
"bugs": {
"url": "https://github.com/airbnb/react-sketchapp/issues"
},
"homepage": "https://github.com/airbnb/react-sketchapp",
"lint-staged": {
"*.js": [
"prettier-eslint --write \"src/**/*.js\"",
"git add"
]
},
"devDependencies": {
"@jongold/eslint-config-sketch": "^1.0.0-2",
"babel-cli": "^6.18.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^18.0.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"flow-bin": "^0.36.0",
"flow-copy-source": "^1.1.0",
"gitbook-cli": "^2.3.0",
"jest-cli": "^18.1.0",
"lint-staged": "^3.4.0",
"pre-commit": "^1.2.2",
"prettier-eslint-cli": "^3.1.2",
"react": "^15.4.1",
"react-test-renderer": "^15.4.1",
"rimraf": "^2.5.4"
}
}