-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "react-display-name",
"version": "0.2.5",
"description": "utility to return a react components display name",
"main": "./lib/getDisplayName.js",
"typings": "./lib/getDisplayName.d.ts",
"files": [
"lib",
"!lib/spec"
],
"scripts": {
"build:lib": "mkdirp lib && babel src -d lib && cpy src/*.d.ts lib",
"build:spec": "mkdirp lib/spec && babel spec -d lib/spec",
"build": "npm run clean && npm run lint && npm run build:lib && npm run build:spec",
"clean": "rimraf lib",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "npm run build:spec && mocha 'lib/spec/*Spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jurassix/react-display-name.git"
},
"keywords": [
"react",
"redux",
"getDisplayName"
],
"author": "jurassix ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/jurassix/react-display-name/issues"
},
"homepage": "https://github.com/jurassix/react-display-name#readme",
"devDependencies": {
"@types/react": "*",
"ajv": "^6.10.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.2.0",
"cpy-cli": "^2.0.0",
"eslint": "6.7.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "7.17.0",
"mkdirp": "^0.5.1",
"mocha": "^6.2.2",
"react": "^16.12.0",
"rimraf": "^3.0.0"
}
}