-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 KB
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
{
"name": "firetail",
"version": "0.2.4",
"description": "",
"main": "dist/main.js",
"homepage": "https://github.com/bobtail-dev/firetail#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bobtail-dev/firetail.git"
},
"keywords": [
"bobtail",
"firebase",
"reactive programming",
"FRP"
],
"author": "Richard Mehlinger",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bobtail-dev/firetail/issues"
},
"scripts": {
"build": "npm run clean && npm run babel && npm run minify",
"babel": "babel src/main.js --out-file dist/main.js --source-maps",
"clean": "rm -rf dist && mkdir dist",
"minify": "uglifyjs -mc --source-map --screw-ie8 -o dist/main.min.js dist/main.js",
"typescript": "",
"test": "babel-node spec/run.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"firebase": "^4.1.5",
"firebase-server": "^0.10.1",
"jasmine": "^2.6.0",
"jasmine-core": "^2.5.2",
"jquery": "^3.2.1",
"typescript": "^2.1.6",
"uglify-es": "^3.0.23",
"underscore": "^1.8.3"
},
"dependencies": {
"bobtail-json-cell": "^0.3.0",
"bobtail-rx": "^2.1.1",
"lodash.set": "^4.3.2"
},
"peerDependencies": {
"firebase": "^4.0.0"
}
}