-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "todoist-js",
"version": "0.3.2",
"description": "The (un)official Todoist javascript API library",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"eslint": "eslint todoist",
"build": "node ./node_modules/babel-cli/bin/babel.js -d dist/ todoist/ --source-maps",
"prepublish": "npm run build"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
}
},
"keywords": [
"todoist",
"todoist-api",
"javascript"
],
"author": "cosmitar",
"license": "ISC",
"babel": {
"presets": [
"env",
"babili"
]
},
"devDependencies": {
"babel": "^6.20.0",
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-babili": "0.0.11",
"babel-preset-env": "^1.1.8",
"dotenv": "^4.0.0",
"eslint": "^3.14.1",
"eslint-config-rackt": "^1.1.1",
"jest": "^18.1.0"
},
"dependencies": {
"babel-polyfill": "^6.22.0",
"fetch-everywhere": "^1.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cosmitar/todoist-js.git"
}
}