-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.45 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
{
"name": "waterline-to-graphql",
"version": "0.0.3",
"description": "Waterline to GraphQL adapter",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"clean": "rimraf lib dist coverage",
"lint": "eslint src test examples",
"test": "mocha --compilers js:babel-core/register **/*.spec.js",
"test:watch": "npm test -- --watch",
"test:cov": "babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive",
"test:examples": "babel-node examples/testAll.js",
"check": "npm run lint && npm run test",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/waterline-to-graphql.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/waterline-to-graphql.min.js --config webpack.config.production.js",
"build:examples": "babel-node examples/buildAll.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean && npm run docs:publish",
"prepublish": "npm run clean && npm run build",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve"
},
"repository": {
"type": "git",
"url": "https://github.com/agenthunt/waterline-to-graphql.git"
},
"keywords": [
"waterline",
"graphql",
"sailsjs",
"adapter"
],
"author": "Shailesh",
"license": "MIT",
"bugs": {
"url": "https://github.com/agenthunt/waterline-to-graphql/issues"
},
"dependencies": {
"graphql": "^0.10.1",
"lodash": "3.10.1",
"waterline": "^0.11.11"
},
"homepage": "https://github.com/agenthunt/waterline-to-graphql",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^7.0.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.3.13",
"chai": "^4.0.2",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-react": "^7.1.0",
"expect": "^1.20.2",
"gitbook-cli": "^2.3.0",
"isparta": "^4.0.0",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"sails-disk": "^0.10.10",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}