-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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": "jsonql",
"version": "1.14.0",
"private": true,
"description": "JSON representation of SQL",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"repository": "[email protected]:mWater/jsonql.git",
"scripts": {
"test": "node_modules/build-library/test-cli",
"test-browser": "node_modules/build-library/test-browser",
"watch": "node_modules/build-library/watch",
"build": "node_modules/build-library/build",
"storybook": "gulp prepare_storybook && start-storybook -s . -p 6009",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"author": "Clayton Grassick",
"license": "LGPL-3.0",
"dependencies": {
"js-yaml": "^3.3.1",
"lodash": "^3.9.3",
"minimist": "^1.1.3"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/lodash": "^3.10.4",
"build-library": "github:mWater/build-library",
"canonical-json": "0.0.4",
"chai": "^2.0.0",
"husky": "^2.3.0",
"mocha": "^2.2.5"
}
}