-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "js-dsl",
"version": "1.2.0",
"description": "A DSL builder for JavaScript",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"clean": "rm -rf dist",
"pretest": "npm run build",
"build": "babel lib -d dist && cp lib/index.d.ts dist",
"docs:dev": "vuepress dev doc",
"docs:build": "vuepress build doc"
},
"author": "Venkat Peri <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^2.6.9",
"lodash": "^4.17.15"
},
"devDependencies": {
"html-validator": "^3.0.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"documentation": "^5.2.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-vaadin": "^0.2.7",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.2.1",
"jshint": "^2.13.4",
"mocha": "^3.5.0",
"vuepress": "^1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/venkatperi/js-dsl.git"
}
}