-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "apollo-accounts",
"version": "0.0.1",
"description": "Accounts for Apollo (GraphQL)",
"main": "index.js",
"readme": "README.md",
"scripts": {
"test": "npm run testonly --",
"testonly": "mocha --reporter spec --full-trace lib/test/tests.js",
"lint": "eslint ./lib",
"lintfix": "eslint ./lib --fix",
"watch": "babel --watch --plugins \"transform-runtime\" lib --ignore __tests__ --out-dir ./dist",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studiointeract/apollo-accounts.git"
},
"keywords": [
"graphql"
],
"author": "Tim Brandin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/studiointeract/apollo-accounts/issues"
},
"homepage": "https://github.com/studiointeract/apollo-accounts#readme",
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-eslint": "7.x.x",
"babel-plugin-transform-runtime": "6.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"eslint": "3.12.x",
"eslint-plugin-babel": "4.x.x",
"mocha": "^3.0.0"
}
}