-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "graphql-type-samordningsnummer",
"version": "2.0.1",
"description": "Scalar for swedish samordningsnummer",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Iteam1337/graphql-type-samordningsnummer.git"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && ./node_modules/.bin/babel src --out-dir dist",
"pretest": "npm run build",
"test": "ava --verbose",
"lint": "standard",
"prepublish": "npm run build",
"preversion": "npm test"
},
"author": "Kiwi Holmberg <i@holmberg.kiwi>",
"license": "MIT",
"dependencies": {
"fast-luhn": "^1.0.3"
},
"peerDependencies": {
"graphql": "^0.5.0 || ^0.6.0 || ^0.7.0 || ^0.8.0-b || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"graphql": "^0.13.1",
"standard": "^11.0.0"
},
"ava": {
"files": [
"tests/*.js"
]
},
"standard": {
"ignore": [
"/dist"
]
}
}