This repository was archived by the owner on Dec 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.71 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
68
{
"name": "tracking-link",
"version": "4.0.2",
"description": "React component that helps to track clicks for links",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run test",
"lint": "eslint src",
"ava": "NODE_ENV=test ava --verbose",
"test": "npm run lint && npm run ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dailybeast/tracking-link.git"
},
"keywords": [
"tracking",
"link",
"react",
"component",
"dailybeast"
],
"author": "The Daily Beast team",
"license": "MIT",
"bugs": {
"url": "https://github.com/dailybeast/tracking-link/issues"
},
"homepage": "https://github.com/dailybeast/tracking-link#readme",
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react": "^16.4.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"fill-range": "^2.2.4",
"lodash": "^4.17.11",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.3.2",
"sinon": "^4.1.3"
},
"ava": {
"babel": "inherit",
"concurrency": 5,
"files": [
"test/**/*-test.js"
],
"require": [
"babel-register",
"babel-polyfill",
"./test-setup.js"
]
}
}