-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "meteor-auth",
"version": "0.2.0",
"description": "A reusable composer to implement authentication for Mantra applications",
"main": "./dist/index.js",
"scripts": {
"test": "npm run-script compile && NODE_ENV=test ./node_modules/.bin/_mocha test/**/**/*_test.js --compilers js:babel-core/register",
"compile": "./node_modules/.bin/babel lib/ -d dist/",
"prepublish": "npm run-script compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sungwoncho/meteor-auth.git"
},
"keywords": [
"mantra",
"authentication",
"meteor",
"composer"
],
"author": "Sung Won Cho <mikeswcho@gmail.com> (https://sungwoncho.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sungwoncho/meteor-auth/issues"
},
"homepage": "https://github.com/sungwoncho/meteor-auth#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"dependencies": {
"mantra-core": "^1.6.1",
"react": "^15.1.0"
}
}