-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.4 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.4 KB
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
{
"name": "icelandic-inflections",
"version": "0.4.0",
"author": "Egill",
"homepage": "https://github.com/ylhyra/icelandic-inflections#readme",
"license": "MIT",
"description": "",
"directories": {
"doc": "docs"
},
"scripts": {
"startX": "nodemon --exec 'npm run styles && npm run server' -e js,styl --ignore styles/build.css",
"start": "export NODE_PATH=. && nodemon -r esm ./server/server-standalone/index.js -e js --ignore styles/build.css",
"server": "export NODE_PATH=. && node -r esm ./server/server-standalone/index.js",
"styles": "stylus --include styles/ < styles/index.styl > styles/build.css --compress",
"style_watch": "nodemon --exec 'npm run styles' -e styl",
"test": "export NODE_PATH=. && mocha -r esm",
"test_server": "export NODE_PATH=. && export LOCAL_TESTING=true && mocha -r esm",
"test_random": "export NODE_PATH=. && node -r esm ./test/random.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ylhyra/icelandic-inflections.git"
},
"keywords": [
"icelandic"
],
"bugs": {
"url": "https://github.com/ylhyra/icelandic-inflections/issues"
},
"dependencies": {
"axios": "^0.19.2",
"cors": "^2.8.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"lodash": "^4.17.20",
"stylus": "^0.54.8"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.6.0",
"mocha": "^8.1.3"
}
}