-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
71 lines (71 loc) · 2 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
66
67
68
69
70
71
{
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"chalk": "^2.4.1",
"fs-extra": "^6.0.0",
"html-minifier": "^3.5.15",
"jest": "^23.5.0",
"jest-tap-reporter": "^1.9.0",
"markdown-builder": "^0.9.0",
"markdown-it": "^8.4.1",
"mini.css": "^2.3.7",
"node-sass": "^4.9.0",
"octicons": "^7.2.0",
"prettier": "^1.12.1",
"prismjs": "^1.14.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-babel-minify": "^4.0.0",
"semistandard": "^12.0.1"
},
"name": "30-seconds-of-c",
"description": "Curated collection of useful C Programming tutorials, snippets, and projects that you can understand in 30 seconds or less.",
"version": "1.0.0",
"main": "dist/_index.js",
"module": "dist/_30s.esm.js",
"scripts": {
"glossary:librarian": "node ./scripts/glossary/library.js",
"glossary:keymaker": "node ./scripts/glossary/keyword.js",
"builder": "node ./scripts/build.js",
"linter": "node ./scripts/lint.js",
"tagger": "node ./scripts/tag.js",
"webber": "node ./scripts/web.js",
"tester": "node ./scripts/tdd.js",
"extractor": "node ./scripts/extract.js",
"packager": "node ./scripts/module.js",
"localizer": "node ./scripts/localize.js",
"analyzer": "node ./scripts/analyze.js",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fredsiika/30-seconds-of-c.git"
},
"keywords": [
"c",
"clang",
"c-programming",
"snippets",
"c-snippets"
],
"author": "Fred Siika",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/fredsiika/30-seconds-of-c/issues"
},
"homepage": "https://github.com/fredsiika/30-seconds-of-c#readme",
"dependencies": {},
"jest": {
"reporters": [
[
"jest-tap-reporter",
{
"filePath": "test/testlog",
"logLevel": "INFO",
"showInternalStackTraces": false
}
]
]
}
}