-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.49 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@parch-js/rest-serializer",
"version": "0.1.2",
"description": "RestSerializer for parch to normalize request/response",
"main": "index.js",
"repository": "parch-js/rest-serializer",
"author": "Dylan Foster <dylan947@gmail.com>",
"license": "MIT",
"keywords": [
"parch",
"restful",
"rest",
"serializer"
],
"scripts": {
"build": "babel src -d lib",
"cover": "nyc yarn test",
"changelog": "conventional-changelog -s -p angular -i CHANGELOG.md",
"docs": "yuidoc . -o docs",
"lint": "eslint ./src ./test",
"prepare-release": "curl -sL https://gist.githubusercontent.com/dylanfoster/35b06db9aaa9237da77eff4a8eec0a22/raw/83ec714ec64f7ec36c5004588aa259354fc87b51/prepare-release.sh | bash -s",
"prepublish": "yarn build",
"pretest": "yarn build",
"test": "NO_DEPRECATION=parch NODE_ENV=test mocha --recursive --compilers js:babel-register --timeout 5000",
"watch:build": "chokidar 'src/**' 'test/**/*.js' -c 'yarn build' --initial",
"watch:cover": "chokidar 'src/**' 'test/**/*.js' -c 'yarn cover' --initial",
"watch:test": "chokidar 'src/**' 'test/**/*.js' -c 'yarn test' --initial"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^8.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.9.0",
"chai": "^4.1.2",
"chokidar-cli": "^1.2.0",
"conventional-changelog-cli": "^1.2.0",
"coveralls": "^3.0.0",
"eslint": "^4.11.0",
"eslint-config-unstandard": "^1.4.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"sinon": "^4.1.2",
"sinon-chai": "^2.8.0",
"sqlite3": "^3.1.4",
"yuidoc-lucid-theme": "^0.1.2",
"yuidocjs": "^0.10.2"
},
"dependencies": {
"@parch-js/json-serializer": "^0.0.1",
"inflect": "^0.4.0",
"restify-errors": "^5.0.0",
"sequelize": "^4.22.6"
},
"eslintConfig": {
"extends": "unstandard",
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"max-len": [
1,
{
"code": 100
}
],
"new-cap": 0,
"no-magic-numbers": [
2,
{
"ignore": [
-1,
0,
1
],
"ignoreArrayIndexes": true
}
]
}
},
"babel": {
"presets": [
"env"
],
"plugins": [
"babel-plugin-add-module-exports"
]
},
"nyc": {
"reporter": [
"text",
"lcov",
"html"
]
}
}