-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 906 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 906 Bytes
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
{
"name": "frontful-config",
"version": "3.0.4",
"private": true,
"description": "Configuration provider for isomorphic applications, packages and Frontful infrastructure",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/frontful/frontful-config.git"
},
"main": "./initialize/index.js",
"scripts": {
"build": "yarn test && babel-preset-frontful build",
"deploy": "yarn test && babel-preset-frontful deploy",
"test": "yarn test:eslint",
"test:eslint": "node ./node_modules/eslint/bin/eslint.js --max-warnings 0 ."
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"deep-extend": "^0.6.0",
"js-yaml": "^3.8.3",
"object-path": "^0.11.4",
"require-from-string": "^2.0.2"
},
"devDependencies": {
"babel-preset-frontful": "3.x",
"eslint-config-frontful": "3.x"
}
}