-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 883 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
{
"name": "chiffon",
"version": "2.5.4",
"description": "A small ECMAScript parser, tokenizer and minifier written in JavaScript.",
"main": "chiffon.js",
"directories": {
"test": "tests"
},
"dependencies": {},
"devDependencies": {
"mocha": ""
},
"scripts": {
"test": "mocha --timeout 10000 tests/test",
"test-min": "mocha --timeout 10000 tests/test --min",
"pretest-min": "grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/polygonplanet/Chiffon.git"
},
"keywords": [
"ecmascript",
"javascript",
"parser",
"ast",
"tokenizer",
"lexer",
"minify",
"syntax"
],
"author": "polygon planet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/polygonplanet/Chiffon/issues"
},
"homepage": "https://github.com/polygonplanet/Chiffon"
}