forked from nusmodifications/nusmods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.71 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nusmoderator",
"version": "3.0.0",
"description": "A lightweight library with helpful functions for NUS-related matters",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"clean": "rimraf dist coverage",
"ci": "npm run lint && npm run test",
"lint": "documentation lint src && eslint src",
"docs": "documentation readme src --section=API",
"build": "microbundle",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "npm run clean && npm run test && npm run build && npm run docs --kill --print"
},
"repository": {
"type": "git",
"url": "https://github.com/nusmodifications/nusmods.git"
},
"keywords": [
"NUS",
"NUSMods",
"modifications",
"moderator",
"moderation",
"academic",
"year",
"semester",
"week"
],
"author": "NUSModifications",
"license": "MIT",
"bugs": {
"email": "[email protected]"
},
"homepage": "https://github.com/nusmodifications/nusmods/tree/master/packages/nusmoderator",
"npmName": "nusmoderator",
"devDependencies": {
"@babel/core": "7.5.4",
"@babel/preset-env": "7.5.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"documentation": "11.0.1",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-prettier": "3.1.0",
"jest": "24.8.0",
"microbundle": "0.11.0",
"prettier": "1.18.2",
"rimraf": "2.6.3"
},
"dependencies": {
"date-fns": "2.0.0-beta.2"
}
}