-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.95 KB
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
67
68
{
"name": "@anew/plugins",
"version": "1.5.1",
"description": "Anew Store Plugins",
"main": "lib/index.js",
"author": "Abdelrahman Salem <abubakir1997@gmail.com> (http://www.pages.drexel.edu/\\~aas372/)",
"license": "MIT",
"homepage": "https://github.com/anewjs/plugins#readme",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest",
"test:start": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"clean": "rm -rf lib",
"build": "yarn clean && babel src -d lib",
"start": "babel src -w -d lib",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anewjs/plugins.git"
},
"keywords": [
"anew",
"store",
"plugins"
],
"bugs": {
"url": "https://github.com/anewjs/plugins/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json,css,scss,md}": [
"prettier --config ./.prettierrc --write \"src/**/*.js\"",
"git add"
]
},
"dependencies": {
"@babel/runtime": "^7.6.0",
"query-string": "^6.8.3",
"react-is": "^16.12.0",
"react-serialize": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-react-display-name": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "6.7.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2"
}
}