-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
{
"name": "xylophone-react",
"version": "2.0.6",
"description": "A React based xylophone ready to use out of the box",
"homepage": "https://github.com/LauraAubin/Xylophone-react",
"main": "ES5/Xylophone/index.js",
"scripts": {
"compile-to-ES5": "./node_modules/.bin/babel src --out-dir ES5",
"convert-sass-to-css": "node-sass src -o ES5",
"replace-sass-mentions-with-css": "replace scss css --include='ES5/*/*.js'",
"compile-files": "npm-run-all compile-to-ES5 convert-sass-to-css replace-sass-mentions-with-css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LauraAubin/Xylophone.git"
},
"keywords": [
"xylophone",
"react"
],
"author": "Laura Aubin",
"license": "ISC",
"bugs": {
"url": "https://github.com/LauraAubin/Xylophone/issues"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"node-sass": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"replace": "^1.1.0",
"npm-run-all": "^4.1.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}