-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.09 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
{
"name": "peritext-utils",
"version": "0.2.18",
"description": "reusable utilities for the peritext ecosystem",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist; mkdir dist; babel src -d dist",
"lint": "eslint src",
"addbuild": "git add dist",
"lint:fix": "eslint src --fix"
},
"pre-commit": [
"lint",
"build",
"addbuild"
],
"repository": {
"type": "git",
"url": "git+https://github.com/peritext/peritext-utils.git"
},
"keywords": [
"publishing"
],
"author": "Robin de Mourat",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/peritext/peritext-utils/issues"
},
"homepage": "https://github.com/peritext/peritext-utils#readme",
"dependencies": {
"citeproc": "^2.2.27",
"object-path": "^0.11.4",
"react-citeproc": "^0.1.10",
"slugify": "^1.3.4",
"unicode-byte-truncate": "^1.0.0"
},
"peerDependencies": {
"lodash": "^4.17",
"react": "^16.7.0-alpha",
"react-dom": "^16.7.0-alpha",
"peritext-schemas": "^0.2.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@robindemourat/eslint-config": "git+https://github.com/robindemourat/eslint-config.git",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"lodash": "^4.17",
"peritext-schemas": "^0.2.0",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"eslint-plugin-react": "^7.5.1",
"react": "^16.7.0-alpha",
"react-dom": "^16.7.0-alpha"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react"
]
}
}