forked from Brightspace/react-valence-ui-fileviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "react-vui-fileviewer",
"version": "0.0.1",
"description": "React component for viewing files",
"main": "src/fileViewer.js",
"scripts": {
"prebuild-sample": "rimraf ./sample/dist && mkdirp ./sample/dist",
"build-sample": "browserify -s app ./sample/app.js > ./sample/dist/app.js && node-sass ./sample/app.scss ./sample/dist/app.css",
"lint": "eslint src",
"postinstall": "bower install",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"serve": "http-server -p 8080 ./sample/",
"test:unit": "jest --coverage",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/react-valence-ui-fileviewer.git"
},
"keywords": [
"d2l",
"valence-ui",
"vui",
"fileviewer"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"peerDependencies": {
"react": "^0.13.3"
},
"devDependencies": {
"babel-jest": "^5.3.0",
"bower": "^1.5.3",
"browserify": "^11.1.0",
"coveralls": "^2.11.4",
"d2l-intl": "^0.2.1",
"eslint": "^1.5.1",
"eslint-config-brightspace": "^0.0.2",
"http-server": "^0.8.5",
"jest-cli": "^0.5.7",
"mkdirp": "^0.5.1",
"node-sass": "^3.3.3",
"reactify": "^1.1.1",
"rimraf": "^2.4.3",
"sinon": "^1.17.1"
},
"private": true,
"browserify": {
"transform": [
"reactify"
]
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}