forked from hiendv/octicons-modular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.47 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "octicons-modular",
"version": "0.2.4",
"description": "Octicons with the icon-per-file style",
"main": "main.common.js",
"module": "main.esm.js",
"style": "main.css",
"scripts": {
"react-build": "webpack --progress --colors --p --config react/webpack.config.js",
"react-start": "",
"test": "jest",
"lint": "eslint --ext .js *.js ./src ./build ./test",
"dev": "nodemon ./src ./build ./test --exec 'npm run lint'",
"clean": "rimraf lib/* && rimraf src/icons/* && rimraf src/octicons.js",
"build": "npm run clean && babel-node build/modulize.js && npm run lint && babel-node build/build.js && npm test",
"publish-meta": "cp -rf package.json lib/package.json && cp -rf README.md lib/README.md && cp -rf LICENSE lib/LICENSE",
"publish": "npm test && npm run publish-meta && cd lib && npm publish",
"version-patch": "rimraf package-lock.json && npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiendv/octicons-modular.git"
},
"keywords": [
"octicons",
"modular",
"svg",
"icons"
],
"author": "Hien Dao <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiendv/octicons-modular/issues"
},
"homepage": "https://github.com/hiendv/octicons-modular#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.1.0",
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"handlebars": "^4.0.10",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.0",
"lodash.camelcase": "^4.3.0",
"nodemon": "^1.12.1",
"octicons": "^6.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0-beta.7",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-css-only": "^0.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"webpack": "^3.6.0"
},
"dependencies": {
"path": "^0.12.7",
"webpack-dev-server": "^2.9.1"
}
}