-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
33 lines (33 loc) · 855 Bytes
/
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
{
"name": "parse-lite",
"version": "0.2.0",
"description": "The universal JS library for Parse Server",
"homepage": "https://github.com/andrewimm/parse-lite",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/andrewimm/parse-lite"
},
"dependencies": {
"ibeam": "^0.1.1"
},
"files": [
"lib",
"index.js",
"README.md"
],
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-syntax-flow": "^6.3.13",
"babel-plugin-transform-flow-strip-types": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.3.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"scripts": {
"build": "babel src --out-dir lib --copy-files --ignore defs",
"test": "mocha --ui tdd --compilers js:babel-register"
}
}