-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "pug-uses-variables",
"version": "3.0.1",
"author": "Eugene Zhlobo <[email protected]>",
"description": "Extract variables from pug template",
"main": "dist/index.js",
"scripts": {
"prepublish": "yarn build",
"build": "rm -rf ./dist && babel src -d dist",
"lint": "eslint ./",
"flow": "flow",
"test": "jest"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ezhlobo/pug-uses-variables"
},
"homepage": "https://github.com/ezhlobo/pug-uses-variables",
"bugs": "https://github.com/ezhlobo/pug-uses-variables/issues",
"dependencies": {
"@babel/parser": "^7.3.2",
"@babel/traverse": "^7.2.3",
"pug-lexer": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.7.0",
"flow-bin": "^0.92.1",
"jest": "^24.1.0"
},
"eslintConfig": {
"extends": [
"./eslintrc.js"
]
},
"eslintIgnore": [
"dist",
"flow-typed"
],
"keywords": [
"pug",
"pug-template",
"ast",
"react",
"library",
"babel"
],
"license": "MIT"
}