-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.12 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
{
"name": "firestore-sweet",
"version": "0.5.2",
"main": "./lib/index.js",
"author": {
"name": "Tomoya Nagasawa",
"email": "ocrybit@gmail.com",
"url": "https://tomo.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/ocrybit/firestore-sweet.git"
},
"keywords": [
"firestore"
],
"license": "MIT",
"scripts": {
"clean": "rimraf lib",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test": "mocha --require babel-core/register --require babel-polyfill --recursive",
"test:watch": "npm test -- --watch",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"dependencies": {
"ramda": "^0.27.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.5.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"mocha": "^6.1.3",
"rimraf": "^2.6.2"
}
}