-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "sobriquet",
"version": "2.0.1",
"description": "A name generator based on Markov chains",
"main": "./bin/main",
"preferGlobal": true,
"bin": {
"sobriquet": "./dist/main.js"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.3.17",
"babel-eslint": "^6.0.0",
"babel-jest": "^12.0.2",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.6.1",
"command-line-args": "^2.1.6",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"jest-cli": "^12.0.2",
"webpack": "^1.12.9"
},
"scripts": {
"lint": "eslint .",
"prepublish": "npm run compile-prod",
"compile": "webpack --colors --progress",
"compile-prod": "webpack -p",
"dev": "npm run test -- --watch",
"start": "node ./dist/main.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/KevinBacas/sobriquet.git"
},
"author": "Kevin Bacas <[email protected]>",
"license": "MIT",
"jest": {
"coverageDIrectory": "./converage/",
"collectCoverage": true,
"unmockedModulePathPatterns": [
"./node_modules/core-js",
"./node_modules/babel-runtime"
]
}
}