-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "parse-utils",
"version": "2.12.1",
"description": "Parse JS SDK and Parse-Server utilities",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:clean && npm run build:lib && npm run build:flow",
"build:clean": "rimraf lib",
"build:lib": "babel -d lib src",
"build:flow": "flow-copy-source -v src lib",
"jsdoc": "jsdoc2md --configure .jsdoc.json src/index.js",
"flow": "flow",
"prepublish": "npm run build",
"lint": "eslint src"
},
"dependencies": {
"lodash": "^4.17.2",
"parse": "^1.9.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.11.1",
"eslint-config-mostaza-base": "^1.13.1",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.36.0",
"flow-copy-source": "^1.1.0",
"jsdoc-babel": "^0.3.0",
"rimraf": "^2.5.4"
}
}