-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "next-rum",
"version": "1.3.0",
"description": "RUM Component for Next.js",
"main": "./lib",
"browser": "./lib",
"module": "index.js",
"devDependencies": {
"assume": "^2.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^8.57.1",
"eslint-config-godaddy-react": "^9.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-react": "^7.37.5",
"jsdom": "^11.12.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"setup-env": "^1.1.0",
"sinon": "^21.0.0"
},
"peerDependencies": {
"prop-types": "x.x.x",
"react": "x.x.x"
},
"scripts": {
"test:runner": "mocha --require setup-env --require ./test/setup.js --recursive \"test/**/*.*(test|spec).js\"",
"test": "nyc --reporter=text --reporter=json-summary npm run test:runner",
"lint": "eslint index.js test/*.js",
"lint:fix": "npm run lint -- --fix",
"posttest": "npm run lint",
"build": "babel index.js purrformance.js -d ./lib",
"prepublishOnly": "npm run build"
},
"homepage": "https://github.com/godaddy/next-rum",
"repository": {
"type": "git",
"url": "git@github.com:godaddy/next-rum.git"
},
"keywords": [
"RUM"
],
"author": "GoDaddy.com Operating Company, LLC",
"contributors": [
"Arnout Kazemier <akazemier@godaddy.com>"
],
"license": "MIT",
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
"babel-preset-es2015",
"babel-preset-react"
]
}
}