-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"name": "loop",
"version": "1.0.2",
"description": "Shared library for Loop functionality",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run lint && npm run compile",
"compile": "tsc",
"lint": "tslint 'src/**/*.ts'",
"clean": "node tasks/clean.js",
"test": "NODE_ENV=test mocha -r ts-node/register test/**/*.test.ts --reporter spec --exit",
"prepare": "npm run compile"
},
"author": "",
"license": "ISC",
"dependencies": {
"firebase": "4.12.1",
"moment": "^2.22.2"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/firebase": "^3.2.1",
"@types/mocha": "^5.2.5",
"@types/node-fetch": "^2.1.2",
"@types/sinon": "^5.0.7",
"@types/ws": "^6.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"firebase-server": "^1.0.0",
"fs": "0.0.1-security",
"mocha": "^5.2.0",
"node-fetch": "^2.2.0",
"sinon": "^7.1.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"appkit": {
"modules": [],
"components": [],
"libs": [
{
"name": "loop",
"script": "dist/index.js"
}
]
}
}