-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 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
69
70
71
{
"name": "@anew/anew",
"version": "1.2.1",
"description": "Anew Package Manager",
"main": "lib/index.js",
"author": "Abdelrahman Salem <abubakir1997@gmail.com> (http://www.pages.drexel.edu/\\~aas372/)",
"license": "MIT",
"homepage": "https://github.com/anewjs/anew#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/anew.git"
},
"keywords": [
"anew",
"react",
"react-dom",
"render",
"mount"
],
"bugs": {
"url": "https://github.com/anewjs/anew/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.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-react-display-name": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "6.5.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}