-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "react-cmi5",
"version": "1.0.6",
"description": "",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack",
"pack-latest": "npm run build && npm pack && cp ${npm_package_name}-${npm_package_version}.tgz ${npm_package_name}-latest.tgz",
"postversion": "git push && git push --tags",
"clean": "rm -rf node_modules package-lock.json yarn.lock *.tgz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beatthat/react-cmi5.git"
},
"keywords": [
"react",
"javascript",
"xapi",
"cmi5"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/beatthat/react-cmi5/issues"
},
"homepage": "https://github.com/beatthat/react-cmi5#readme",
"peerDependencies": {
"react": ">=15.0.1",
"react-dom": ">=15.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"webpack": "4.28.3",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"app-root-path": "^2.2.1",
"fs-extra": "^7.0.1"
}
}