@nuffieldtechnologies/rugged-schema-types 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +9 -0
- package/.jshintrc +6 -0
- package/package.json +26 -0
- package/src/rugged-schema-types.ts +0 -0
package/.babelrc
ADDED
package/.jshintrc
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nuffieldtechnologies/rugged-schema-types",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Graphql schema for rugged data",
|
|
5
|
+
"main": "./distribution/index.js",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"graphql",
|
|
8
|
+
"schema"
|
|
9
|
+
],
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@babel/cli": "7.0.0-beta.44",
|
|
12
|
+
"@babel/core": "7.0.0-beta.44",
|
|
13
|
+
"@babel/preset-env": "7.0.0-beta.44",
|
|
14
|
+
"@babel/register": "^7.0.0-beta.44",
|
|
15
|
+
"chai": "^4.1.2",
|
|
16
|
+
"mocha": "^4.1.0",
|
|
17
|
+
"rimraf": "^2.6.2"
|
|
18
|
+
},
|
|
19
|
+
"author": "Tom Edge",
|
|
20
|
+
"license": "UNLICENSED",
|
|
21
|
+
"scripts": {
|
|
22
|
+
"test": "./node_modules/.bin/mocha --require @babel/register --recursive",
|
|
23
|
+
"build": "./node_modules/.bin/babel src --out-dir distribution --drop-console=false --ignore node_modules",
|
|
24
|
+
"prepublishOnly": "npm install && npm run build"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
File without changes
|