-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.67 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
63
64
65
66
67
68
69
70
71
{
"name": "react-footnotes",
"version": "0.1.2",
"reveal": true,
"description": "👣 dead simple footnotes, in React",
"main": "src/Footnotes.js",
"module": "build/react-footnotes.js",
"scripts": {
"build:client": "webpack-cli",
"build": "npm-run-all -s clean build:*",
"clean": "rimraf build",
"dev": "parcel serve src/index.html",
"lint": "standard **/*.js",
"test": "jest"
},
"keywords": [
"footnotes",
"react",
"component",
"footnote"
],
"repository": {
"url": "https://github.com/moimikey/react-footnotes"
},
"author": "Michael Scott Hertzberg <[email protected]> (https://hertzber.gs)",
"license": "WTFPL",
"standard": {
"parser": "babel-eslint",
"plugins": [
"react"
],
"env": [
"es6",
"shared-node-browser",
"jest"
]
},
"jest": {
"verbose": true,
"setupTestFrameworkScriptFile": "<rootDir>setup.js"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^7.0.3",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^7.15.0",
"jest": "^23.5.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.3",
"npx": "^10.2.0",
"parcel": "^1.9.7",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rimraf": "^2.6.2",
"standard": "^11.0.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"react-tree-walker": "^4.3.0"
}
}