-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1016 Bytes
/
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
{
"name": "todoer",
"main": "./lib/main",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/jmanuel1/todoer/"
},
"engines": {
"mailspring": ">=1.6.3"
},
"windowTypes": {
"default": true,
"composer": true
},
"description": "Automatically add an email to your local todo.txt when you star it.",
"dependencies": {
"async": "^3.2.0",
"babel-polyfill": "^6.26.0",
"jstodotxt": "^0.7.0",
"react-markdown": "^6.0.2"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"jasmine": "^3.8.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"react": "16.6.0",
"react-dom": "16.6.0"
},
"scripts": {
"build": "babel lib -d lib",
"test": "babel spec -d spec && jasmine",
"watch": "babel lib -d lib --watch"
}
}