-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
43 lines (43 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
{
"name": "learnuv",
"version": "0.1.3",
"description": " Learn uv for fun and profit, a self guided workshop to the library that powers Node.js.",
"main": "index.js",
"scripts": {
"clean-deps": "rm -rf build && rm -rf deps",
"clean": "rm -rf out",
"pack": "./scripts/pack.sh",
"preinstall": "python scripts/install-dependencies.py",
"xcode": "./gyp_learnuv.py -f xcode",
"ninja": "./gyp_learnuv.py -f ninja && ninja -C out/Debug $CURRENT_TARGET",
"make": "./gyp_learnuv.py -f make && make -C out $CURRENT_TARGET"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/learnuv.git"
},
"homepage": "https://github.com/thlorenz/learnuv",
"dependencies": {
"ansicolors": "~0.3.2",
"diff": "~1.0.8",
"text-table": "~0.2.0",
"workshopper": "~1.3.2",
"workshopper-exercise": "~1.1.0",
"workshopper-hooray": "~1.0.1",
"workshopper-more": "~1.0.1"
},
"devDependencies": {},
"keywords": [],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/learnuv/blob/master/LICENSE"
},
"engine": {
"node": ">=0.8"
}
}