-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "electron-css",
"version": "1.0.2",
"description": "Proper, framework agnostic Style in JS library, without any of the fuss of CSS",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"test-ci": "cross-env NODE_ENV=test jest --coverage; cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"start": "webpack-serve",
"build": "rm -rf dist; tsc src/index.ts --declaration --emitDeclarationOnly --outDir dist; webpack -p"
},
"serve": {
"content": [
"demo"
]
},
"jest": {
"roots": [
"src",
"tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/azukaar/electron-css.git"
},
"keywords": [
"css",
"css-in-js",
"style",
"react",
"angular"
],
"author": "Yann Stepienik",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/azukaar/electron-css/issues"
},
"homepage": "https://github.com/azukaar/electron-css#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.6",
"cross-env": "^5.2.0",
"jest": "^24.9.0",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-serve": "^3.1.1"
}
}