-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.67 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": "night.js",
"version": "1.2.0",
"description": "Smart dark mode switcher (based on location and time)",
"main": "lib/night.min.js",
"scripts": {
"build": "webpack --env dev && webpack --env build && npm run test",
"dev": "webpack --progress --colors --watch --env dev",
"lint": "eslint ./src --fix",
"prettier": "prettier --write 'src/**/*.js'",
"test": "mocha -r @babel/register --colors ./test/*.spec.js --exit",
"test:watch": "mocha -r @babel/register --colors -w ./test/*.spec.js",
"deploy": "gh-pages -d demo/build"
},
"repository": {
"type": "git",
"url": "https://github.com/JB1905/night.js.git"
},
"keywords": [
"JavaScript",
"dark",
"night",
"switch",
"smart",
"sun"
],
"author": "Jakub Biesiada",
"license": "MIT",
"bugs": {
"url": "https://github.com/JB1905/night.js/issues"
},
"homepage": "https://github.com/JB1905/night.js#readme",
"dependencies": {
"suncalc": "^1.8.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-add-module-exports": "^1.0.0",
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"gh-pages": "^2.0.1",
"jsdom": "13.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"mock-local-storage": "^1.1.8",
"prettier": "^1.15.3",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}