-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 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
{
"name": "@heydemo/runway",
"version": "1.0.11",
"description": "",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "mkdir dist -p; babel -d dist/ src/ --source-maps",
"test": "mocha tests/* -w --compilers js:babel-core/register",
"start": "node server.js",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"check-coverage": "./node_modules/istanbul/lib/cli.js check-coverage --statements 80 --branches 80 --lines 80 --functions 80",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"author": "John De Mott <heydemo13@gmail.com>",
"license": "ISC",
"dependencies": {
"babel-runtime": "6.6.1",
"object-values": "1.0.0",
"parse": "1.8.3",
"parse-find-all": "1.0.0",
"q": "1.4.1",
"sql-escape": "1.0.1",
"tcomb": "3.0.0",
"tcomb-doc": "0.5.0",
"treat-as-promise": "1.0.0",
"websql": "0.4.4",
"websql-promise": "1.0.2",
"websql-promisified": "1.0.6"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.9.0",
"babel-loader": "6.2.4",
"babel-plugin-transform-object-assign": "6.8.0",
"babel-preset-es2015": "6.6.0",
"chai": "3.5.0",
"shelljs": "0.7.0",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
}
}