-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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": "@frontender-magazine/codepen-sdk",
"version": "1.0.0",
"description": "Fork Pen to your account",
"main": "index.js",
"scripts": {
"watch": "babel --watch source -s true -d lib --ignore __tests__/**,__mocks__/**",
"build": "babel source -s true -d lib --ignore __tests__/**,__mocks__/**",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrontenderMagazineDevelopment/builder.git"
},
"lint-staged": {
"*.js": [
"eslint --color -f stylish --fix"
]
},
"keywords": [
"Frontender Magazine",
"fm",
"frontender"
],
"author": "Anton Nremtsev <[email protected]>",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/FrontenderMagazineDevelopment/builder/issues"
},
"homepage": "https://github.com/FrontenderMagazineDevelopment/builder#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.54",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.54",
"@babel/plugin-proposal-export-default": "^7.0.0-beta.32",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.54",
"@babel/plugin-proposal-optional-chaining": "^7.0.0-beta.54",
"@babel/polyfill": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"eslint": "^5.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0"
},
"dependencies": {
"@frontender-magazine/mercury-sdk": "^2.8.0",
"dotenv": "^6.0.0",
"isomorphic-fetch": "^2.2.1",
"query-string": "^6.1.0",
"turndown": "^4.0.2",
"turndown-plugin-gfm": "^1.0.2"
}
}