-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.05 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
{
"name": "simple-cite",
"version": "0.1.1",
"description": "A simple package for generating citations and bibliographies",
"main": "dist/simple-cite.cjs.js",
"module": "dist/simple-cite.esm.js",
"browser": "dist/simple-cite.umd.js",
"files": [
"dist"
],
"keywords": [
"citation",
"bibliography",
"academic writing",
"citation style language",
"csl",
"citeproc-js"
],
"repository": "github:richlewis42/simple-cite",
"author": {
"name": "Rich Lewis",
"email": "[email protected]",
"url": "https://richlew.is/"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.1.5",
"citeproc": "^2.1.210"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.4",
"jest": "^23.6.0",
"jest-html-reporter": "^2.4.2",
"jest-junit": "^5.2.0",
"jest-raw-loader": "^1.0.1",
"lint-staged": "^8.0.4",
"locale-en-gb": "^0.0.1",
"locale-es-es": "^0.0.1",
"prettier": "^1.15.2",
"rimraf": "^2.6.3",
"rollup": "^0.67.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.0",
"style-apa": "^0.0.1",
"style-vancouver": "^0.0.1"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"dev": "NODE_ENV=development rollup -c -w",
"test": "jest",
"lint": "eslint .",
"format": "yarn lint --fix",
"clean": "rimraf dist reports yarn-error.log",
"ci": "jest && codecov"
}
}