-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
26 lines (26 loc) · 855 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
{
"name": "form-editor",
"version": "1.0.0",
"description": "Text based form-generator for developers that don't want the hassle of filling-forms in order to create forms",
"homepage": "https://danbars.github.io/form-builder",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build_grammar": "nearleyc src/parser/grammar.ne -o src/parser/grammar.js",
"build_ace": "cd ./ace/;npm i;node ./Makefile.dryice.js --target ../src/ace;cd ..",
"build_themes": "sass ./src/themes/default.scss:./src/themes/default.css --update"
},
"author": "",
"license": "ISC",
"dependencies": {
"ace": "file:ace",
"nearley": "^2.16.0"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-html-replace": "^1.6.2",
"gulp-scss": "^1.4.0",
"moo": "^0.5.0",
"scss": "^0.2.4"
}
}