-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "@reachify/reachify-js",
"version": "0.0.0",
"description": "Reachify front-end Javascript library",
"main": "dist/index",
"scripts": {
"build": "babel src --out-dir dist --source-maps",
"prepublish": "sh scripts/prepublish.sh",
"postpublish": "sh scripts/postpublish.sh",
"lint": "eslint ./src --ext .js",
"lintfix": "npm run lint -- --fix",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reachifyio/reachify-js.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/reachifyio/reachify-js#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-relay-plugin": "^0.10.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",
"flow-bin": "^0.42.0"
},
"dependencies": {
"qs": "^6.4.0"
}
}