-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "codex-notifier",
"version": "1.1.2",
"description": "Simple notifications for your website",
"main": "./dist/bundle.js",
"types": "./index.d.ts",
"scripts": {
"build": "webpack --config ./webpack.config.js --mode production",
"build:dev": "webpack --config ./webpack.config.js --mode development --watch"
},
"license": "MIT",
"author": {
"name": "CodeX Team",
"email": "team@ifmo.su"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codex-team/js-notifier.git"
},
"bugs": {
"url": "https://github.com/codex-team/js-notifier/issues"
},
"homepage": "https://github.com/codex-team/js-notifier#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"css-loader": "^1.0.0",
"eslint": "^5.8.0",
"eslint-config-codex": "github:codex-team/eslint-config",
"eslint-loader": "^2.1.1",
"postcss-clean": "^1.1.0",
"postcss-cssnext": "^2.11.0",
"postcss-loader": "^2.0.6",
"postcss-nested": "^2.0.2",
"postcss-nested-ancestors": "^1.0.0",
"postcss-nesting": "^4.0.1",
"postcss-smart-import": "^0.7.4",
"style-loader": "^0.21.0",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0"
},
"babel": {
"presets": [
"env"
]
}
}