-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 2.66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "kyper-grout",
"version": "0.2.10",
"description": "Library to communicate with tessellate application building/managing service.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"src",
"dist",
"lib"
],
"scripts": {
"clean": "rimraf lib dist coverage",
"test": "mocha -R spec --compilers js:babel-core/register ./test/setup.js ./test/**/*.spec.js",
"test:cov": "babel-node $(npm bin)/isparta cover --report lcov ./node_modules/mocha/bin/_mocha -- ./test --recursive",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/grout.js --config webpack.config.development.js",
"build:umd:min": "webpack -p src/index.js dist/grout.min.js --config webpack.config.production.js",
"build": "npm run clean && npm run build:lib && npm run build:umd && npm run build:umd:min",
"watch:umd": "npm run build:umd -- --stats --progress --colors --watch",
"watch:lib": "npm run build:lib -- --watch",
"watch": "npm run watch:umd",
"prepublish": "npm run clean && npm run build",
"dev": "browser-sync start --server --port 5000",
"upload": "node ./bin/upload"
},
"repository": {
"type": "git",
"url": "https://github.com/kypertech/grout.git"
},
"keywords": [
"kyper",
"grout",
"matter",
"tessellate",
"authentication",
"user management",
"application management"
],
"author": "Kyper Digital Inc. <[email protected]>",
"contributors": [
{
"name": "Scott Prue",
"email": "<[email protected]>"
},
{
"name": "Mel van Londen",
"email": "<[email protected]>"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kypertech/grout/issues"
},
"homepage": "https://github.com/kypertech/grout",
"dependencies": {
"firebase": "^2.4.0",
"jszip": "^2.5.0",
"kyper-matter": "0.2.10",
"lodash": "4.5.1",
"node-safe-filesaver": "^0.1.0",
"qs": "^6.0.2",
"superagent": "^1.7.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-lodash": "^2.0.1",
"babel-preset-es2015": "^6.5.0",
"brfs": "^1.4.3",
"browser-sync": "^2.11.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"es6-promise": "^3.0.2",
"isparta": "^4.0.0",
"jsdom": "^8.0.2",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"rimraf": "^2.5.1",
"s3-cli": "^0.13.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.7.0",
"transform-loader": "^0.2.3",
"webpack": "^1.12.13"
}
}