-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "@s-ui/react-icons",
"version": "1.9.1",
"description": "ReactJS SUI SVG iconset",
"main": "lib/",
"scripts": {
"build": "npm run prebuild && node src/index.js && copyfiles -u 1 src/*.scss lib && npm run compile",
"clean:components": "rimraf ./components/*",
"compile": "babel components --out-dir lib",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "sui-lint js --fix",
"lint:sass": "sui-lint scss --fix",
"phoenix": "rimraf ./node_modules/ && npm install",
"prebuild": "npm run clean:components -s",
"predoc": "rimraf ./docs/lib/*",
"prepare": "npm run build",
"start": "npm run build && npm run start:open && npm run start:server",
"start:open": "opener http://localhost:1234",
"start:server": "parcel ./docs/index.html"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "0.14 || 15 || 16 || 17"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"@s-ui/lint": "3",
"babel-loader": "8.0.6",
"babel-preset-sui": "3",
"camelcase": "5.3.1",
"copyfiles": "2.2.0",
"opener": "1.5.1",
"parcel-bundler": "1.12.5",
"prop-types": "15.7.2",
"react": "17",
"react-dom": "17",
"rimraf": "3.0.1",
"sass": "1.25.0"
},
"babel": {
"presets": [
"sui"
]
},
"pre-commit": [
"lint",
"test"
],
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
}
}