-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "@schibstedspain/sui-autocompleted",
"version": "6.0.3",
"main": "dist/",
"scripts": {
"clean": "rm -Rf ./dist/*",
"lib": "npm run clean && npm run lib:scripts && npm run lib:styles",
"lib:scripts": "babel src --out-dir dist",
"lib:styles": "cpx './src/**/*.scss' ./dist",
"prepublish": "npm run lib",
"lint": "npm run lint:js && npm run lint:sass",
"lint:sass": "node_modules/.bin/sass-lint src/**/*.scss -c -v",
"lint:js": "node_modules/.bin/eslint --ext .js,.jsx ./",
"test": ""
},
"repository": {
"type": "git",
"url": "https://github.com/SUI-Components/sui-autocompleted/"
},
"peerDependencies": {
"classnames": "2",
"react": "0.14 || 15"
},
"devDependencies": {
"@babel/cli": "7.6.4",
"@s-ui/lint": "3",
"@schibstedspain/theme-basic": "5",
"cpx": "1.5.0",
"babel-preset-sui": "3",
"classnames": "2",
"prop-types": "15.6.0",
"react": "16",
"react-dom": "16"
},
"pre-commit": [
"test"
],
"eslintConfig": {
"extends": "./node_modules/@s-ui/lint/eslintrc.js"
},
"babel": {
"presets": [
"sui"
]
}
}