-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 KB
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
{
"name": "pomodoro_timer",
"version": "1.0.0",
"description": "Your own Pomodoro timer.",
"main": "jsDist/main.js",
"directories": {
"doc": "doc",
"git": "https://github.com/Oustinger/Pomodoro_timer.git"
},
"dependencies": {
"babel": "^6.23.0",
"cross-env": "^7.0.2",
"on-change": "^2.0.1",
"watchjs": "^0.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"browserify": "^16.5.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"lodash": "^4.17.21"
},
"scripts": {
"test": "jest",
"linter": "eslint jsSrc",
"babel": "cross-env NODE_ENV=production babel jsSrc --out-dir jsDist --source-maps inline",
"build-js": "browserify jsDist/main.js --debug --outfile >(exorcist jsDist/bundle.js > jsDist/bundle.js)",
"prepublishOnly": "npm run build | npm run bundle"
},
"keywords": [
"pomodoro",
"timer"
],
"author": "Oustinger",
"license": "ISC"
}