-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.72 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
{
"name": "wc-jss",
"version": "0.3.2",
"description": "WC-JSS is based on InuitCSS and inspired by ITCSS architecture. The idea of this library is to follow ITCSS, but using only javascript and get read of SASS/SCSS. It is optimised to use within WebComponents",
"main": "index.js",
"scripts": {
"test": "jest --watch --config=jest.config.js",
"test-no-watch": "jest --config=jest.config.js",
"eslint": "eslint \"**/*.js\"",
"validate": "npm-run-all --parallel eslint test-no-watch",
"precommit": "npm run eslint",
"prepush-OLD": "npm run validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/area73/WC-JSS.git"
},
"keywords": [
"inuitcss",
"itcss",
"javascript",
"custom",
"es6",
"string literals",
"lit-html",
"litElement",
"no sass"
],
"author": "Rodrigo Erades <rerades@siete3.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/area73/WC-JSS/issues"
},
"homepage": "https://github.com/area73/WC-JSS#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-extended": "^0.11.1",
"jest-junit": "^6.4.0",
"jest-snapshot": "^24.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1"
},
"dependencies": {
"ramda": "^0.26.1"
}
}