-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 843 Bytes
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
{
"name": "memrise-export",
"description": "Export all words from a Memrise course to a CSV file.",
"version": "1.1.0",
"author": {
"name": "Raine Revere",
"email": "raine@cybersemics.org",
"url": "https://github.com/raineorshine"
},
"license": "ISC",
"private": true,
"scripts": {
"lint": "eslint src",
"watch": "nodemon -w src -x \"npm run src\""
},
"eslintConfig": {
"extends": [
"raine"
],
"env": {
"webextensions": true
}
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-raine": "^0.2.2",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"nodemon": "^2.0.6"
}
}