-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 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
45
46
47
48
49
{
"name": "wiki-intel-namer",
"version": "1.0.0",
"description": "An app name generator that takes names from intel's list of codenames",
"main": "./dist/app.js",
"scripts": {
"postinstall": "babel lib -d dist",
"start": "node dist/app.js",
"start-watch": "nodemon lib/app.js --exec babel-node",
"start-dev": "babel-node lib/app.js",
"test": "mocha \"test/*.test.js\" --compilers js:babel-register",
"test-watch": "mocha \"test/*.test.js\" -w --compilers js:babel-register",
"lint": "eslint \"lib/**\" \"test/**\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/whiteboxpub/wiki-intel-namer.git"
},
"keywords": [
"node"
],
"author": "Steven Price, Travis Shears",
"license": "MIT",
"bugs": {
"url": "https://github.com/whiteboxpub/wiki-intel-namer/issues"
},
"homepage": "https://github.com/whiteboxpub/wiki-intel-namer#readme",
"dependencies": {
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.2",
"express": "^4.16.3",
"foswig": "^1.1.1",
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"jsdom": "^11.7.0",
"mocha": "^5.0.5",
"nodemon": "^1.17.3",
"sinon": "^4.5.0",
"supertest": "^3.0.0"
}
}