-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
66 lines (66 loc) · 1.8 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
62
63
64
65
66
{
"name": "is-vegan",
"version": "1.2.0",
"description": "Is-Vegan is a library which helps you to find out which ingridiends are not vegan",
"keywords": [
"is-vegan",
"vegan",
"food",
"ingredient",
"ingredients"
],
"main": "dist/index.js",
"scripts": {
"start": "babel-node index.js",
"clean-modules": "rm -rf node_modules",
"init": "mkdir dist",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init && npm run lint && npm run test",
"build": "webpack",
"prepublish": "npm run build",
"lint": "eslint src/**/*.js",
"test": "jest"
},
"jest": {
"testURL": "http://localhost/",
"verbose": true,
"automock": false,
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js}",
"!**/node_modules/**"
]
},
"author": "Hamed Montazeri, [email protected]",
"license": "MIT",
"homepage": "https://github.com/hmontazeri/is-vegan",
"repository": {
"url": "[email protected]:hmontazeri/is-vegan.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.1",
"babel-jest": "22.1.0",
"babel-loader": "7.1.2",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-latest": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"eslint": "4.15.0",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"jest": "22.1.4",
"nodemon": "1.14.11",
"uglifyjs-webpack-plugin": "1.1.8",
"webpack": "3.10.0",
"webpack-node-externals": "1.6.0"
}
}