-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "clippy-react",
"version": "0.1.0",
"description": "Microsoft's Clippy React component",
"main": "lib/clippy.js",
"types": "./lib/clippy.d.ts",
"module": "es/clippy.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component --copy-files",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "jest --collect-coverage",
"test:watch": "jest --watch --no-cache"
},
"dependencies": {
"clippyjs": "0.0.3",
"identity-obj-proxy": "^3.0.0"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"babel-jest": "^27.0.6",
"babel-polyfill": "^6.26.0",
"jest": "^27.0.6",
"jest-environment-jsdom": "^27.0.6",
"nwb": "0.25.x",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"author": "Luiz Chagas",
"homepage": "https://github.com/luiz-chagas/react-clippy",
"license": "MIT",
"repository": "https://github.com/luiz-chagas/react-clippy",
"keywords": [
"clippy",
"react-component"
]
}