-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 943 Bytes
/
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
{
"name": "prepr",
"version": "2.0.1",
"description": "Preprocess string in C/GLSL-preprocessor fashion",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node test.js",
"test:browser": "budo test.js"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dy/prepr.git"
},
"keywords": [
"glsl",
"c",
"preprocessor",
"preprocess",
"macro",
"macros",
"define"
],
"author": "Dmitry Yv <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dy/prepr/issues"
},
"homepage": "https://github.com/dy/prepr#readme",
"devDependencies": {
"cln": "^1.1.0",
"tape": "^4.16.2"
},
"dependencies": {
"balanced-match": "^2.0.0",
"escaper": "^2.5.3",
"object-assign": "^4.1.1",
"parenthesis": "^3.1.8",
"strip-json-comments": "^3.1.1",
"subscript": "^7.3.1"
}
}