forked from primer/octicons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.21 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
{
"name": "@primer/octicons",
"version": "17.10.0",
"description": "A scalable set of icons handcrafted with <3 by GitHub.",
"homepage": "https://primer.style/octicons",
"author": "GitHub Inc.",
"license": "MIT",
"style": "index.scss",
"main": "index.js",
"files": [
"index.js",
"index.scss",
"build"
],
"repository": "https://github.com/primer/octicons.git",
"bugs": {
"url": "https://github.com/primer/octicons/issues"
},
"scripts": {
"build": "\\cp -r ../build/ ./build && \\cp index.scss ./build/build.css",
"lint": "eslint index.js tests/*.js",
"test": "ava --verbose 'tests/*.js'"
},
"keywords": [
"GitHub",
"icons",
"svg",
"octicons"
],
"dependencies": {
"object-assign": "^4.1.1"
},
"devDependencies": {
"@github/prettier-config": "0.0.4",
"ava": "^0.22.0",
"eslint": "^6.5.1",
"eslint-plugin-github": "4.1.3"
},
"eslintConfig": {
"extends": [
"plugin:github/internal",
"plugin:github/recommended"
],
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017,
"requireConfigFile": false
},
"rules": {
"github/no-then": 0
}
}
}