forked from hexlet-boilerplates/nodejs-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.42 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
{
"name": "nodejs-package",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"bin": {
"hexlet": "dist/bin/hexlet.js"
},
"engines": {
"node": "8"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"babel-node": "babel-node",
"flow": "flow",
"flow-typed": "flow-typed",
"gulp": "gulp",
"eslint": "eslint",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-boilerplates/nodejs-package.git"
},
"author": "Kirill Mokevnin",
"license": "ISC",
"bugs": {
"url": "https://github.com/hexlet-boilerplates/nodejs-package/issues"
},
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/hexlet-boilerplates/nodejs-package#readme",
"dependencies": {
"gulp": "*"
},
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-eslint": "*",
"babel-jest": "*",
"babel-plugin-transform-runtime": "*",
"babel-preset-env": "*",
"babel-preset-flow": "*",
"babel-preset-stage-0": "*",
"debug": "*",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "*",
"eslint-plugin-flowtype": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"flow-bin": "^0.57",
"flow-typed": "*",
"jest": "^21",
"jest-cli": "*"
}
}