-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 955 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 955 Bytes
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
{
"name": "@lilonga/khan-academy-api",
"description": "Interact with various Khan Academy APIs. Focused on internal programming-related endpoints",
"version": "0.0.2",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-jest": "^24.8.0",
"documentation": "^11.0.0",
"jest": "^24.8.0",
"rollup": "^1.12.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0"
},
"scripts": {
"now-build": "yarn docs",
"docs": " documentation build src/** -f html -o docs",
"build": "rollup -c",
"prepublish": "yarn run build",
"dev": "rollup -c -w",
"test-integration": "jest --watch int.test",
"test-unit": "jest -w unit.test"
},
"files": [
"dist"
]
}