29 строки
571 B
JSON
29 строки
571 B
JSON
{
|
|
"name": "alltheworld",
|
|
"version": "1.0.0",
|
|
"author": "Adrian Sampson <asampson@cornell.edu>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
|
|
"dependencies": {
|
|
"minimist": "^1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"madoko": "^1.0.0-rc4",
|
|
"typings": "^0.6.9",
|
|
"typescript": "^1.8.7",
|
|
"pegjs": "^0.9.0"
|
|
},
|
|
|
|
"bin": {
|
|
"ssc": "build/ssc.js"
|
|
},
|
|
|
|
"scripts": {
|
|
"typings": "typings install",
|
|
"parser": "pegjs --cache src/grammar.pegjs parser.js",
|
|
"compile": "tsc",
|
|
"build": "npm run typings && npm run parser && npm run compile"
|
|
}
|
|
}
|