-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "fold",
"version": "0.12.0",
"description": "FOLD file format for origami models, crease patterns, etc.",
"main": "lib/index.js",
"bin": {
"fold-convert": "bin/fold-convert.js"
},
"scripts": {
"test": "npm run coffee && jest",
"prepare": "npm run coffee && npm run dist",
"coffee": "coffee --no-header --bare -o lib -c src",
"dist": "browserify -t coffeeify --extension=.coffee -r ./src/index.coffee:fold -o dist/fold.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edemaine/fold.git"
},
"keywords": [
"origami",
"crease",
"pattern",
"geometry",
"2D",
"3D"
],
"contributors": [
{
"name": "Erik Demaine",
"email": "[email protected]",
"url": "http://erikdemaine.org"
},
"Jason Ku",
"Robert Lang"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/edemaine/fold/issues"
},
"homepage": "https://github.com/edemaine/fold#readme",
"devDependencies": {
"browserify": "^16.5.0",
"coffeeify": "^3.0.1",
"coffeescript": "^2.4.1",
"jest": "^26.6.3",
"jest-matcher-deep-close-to": "^2.0.1",
"jest-preset-coffeescript": "1.1.1"
},
"browser": {
"@xmldom/xmldom": false,
"./src/file.coffee": false
},
"jest": {
"preset": "jest-preset-coffeescript",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"@xmldom/xmldom": "^0.7.2"
}
}