-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.97 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
{
"name": "kyper-matter",
"version": "0.2.10",
"description": "Library to provide simple application functionality like authentication and local/session/token storage for Tesselate applications.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"src",
"dist",
"lib"
],
"scripts": {
"clean": "rimraf lib dist coverage",
"test": "mocha --compilers js:babel-core/register --reporter spec ./test/*.js ./test/**/*.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/matter.js --config webpack.config.development.js",
"build:umd:min": "webpack -p src/index.js dist/matter.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 -- --stats --progress --colors --watch",
"watch": "npm run watch:umd",
"dev": "browser-sync start --server --port 5000",
"prepublish": "npm run clean && npm run build",
"upload": "node ./bin/upload",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g kypertech/matter",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:kypertech/matter gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/KyperTech/matter.git"
},
"keywords": [
"matter",
"grout",
"tessellate",
"kyper",
"authentication",
"user management",
"application management",
"es6",
"babel"
],
"author": "Kyper Digital Inc. <[email protected]>",
"contributors": [
{
"name": "Scott Prue",
"email": "<[email protected]>"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/KyperTech/matter/issues"
},
"homepage": "https://github.com/KyperTech/matter",
"dependencies": {
"jwt-decode": "^1.5.1",
"lodash": "^4.5.1",
"superagent": "^1.7.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"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",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"es6-promise": "^3.0.2",
"gitbook-cli": "^1.0.1",
"isparta": "^4.0.0",
"jsdom": "^8.0.4",
"legacy-loader": "0.0.2",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"s3-cli": "^0.13.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.14"
}
}