-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 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
69
70
71
72
73
{
"name": "react-stroke-7",
"version": "1.1.0",
"description": "A React component for pixeden's stroke-7 icon font set.",
"repository": {
"type": "git",
"url": "git+https://github.com/CianCoders/react-stroke-7.gitt"
},
"config": {
"entry": "src",
"output": "lib",
"mainFile": "src/index.js"
},
"bugs": {
"url": "https://github.com/CianCoders/react-stroke-7/issues"
},
"main": "lib/index.js",
"scripts": {
"build": "babel $npm_package_config_entry --out-dir $npm_package_config_output",
"dist": "npm run lint && npm run build && npm test && npm run docs",
"docs": "jsdoc2md $npm_package_config_mainFile > api.md",
"lint": "eslint .",
"test": "mocha",
"watch": "npm run watch-build & npm run watch-test",
"watch-build": "npm run build -- --watch",
"watch-test": "npm run test -- -w"
},
"keywords": [
"react",
"font-stroke7",
"pixeden",
"stroke7",
"bootstrap",
"icons",
"fonts",
"icon",
"style",
"jsx",
"react-component",
"component",
"ciancoders"
],
"author": "Dennis Xiloj <denjohx@gmail.com> (https://ciancoders.com)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.2.0",
"eslint": "^2.5.3",
"eslint-plugin-nodeca": "^1.0.3",
"eslint-plugin-react": "^4.2.3",
"jsdoc-to-markdown": "^1.1.1",
"jsdom": "^6.2.0",
"mocha": "^2.2.5",
"mocha-jsdom": "^1.0.0",
"mocha-sinon": "^1.1.4",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0"
},
"homepage": "https://github.com/CianCoders/react-stroke-7#readme",
"engines": {
"node": ">=0.10.0"
},
"peerDependencies": {
"react": ">=0.12.0"
}
}