-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ddl-tools-plugin-user",
"version": "0.0.3",
"description": "User plugin for ddl-tools, a digital data layer helper utility with data layer schema validation for highly-decoupled analytics reporting",
"license": "Apache-2.0",
"main": "lib/userPlugin.js",
"directories": {
"lib": "lib/"
},
"files": [
"README.md",
"lib"
],
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint . && echo 'Lint finished...\n'",
"pretest": "npm run -s lint",
"prepublish": "npm run build",
"test": "jasmine test/specs/**/*Spec.js",
"update": "updtr",
"watch": "watch 'clear && npm run -s test' src"
},
"repository": {
"type": "git",
"url": "https://github.com/dash-/mono-ddl-tools"
},
"author": "David Ash",
"bugs": {
"url": "https://github.com/dash-/mono-ddl-tools/issues"
},
"homepage": "https://github.com/dash-/mono-ddl-tools",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"ddl-tools": "^0.0.2",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jasmine": "^2.9.1",
"jasmine": "^2.8.0",
"updtr": "^2.0.0",
"watch": "^1.0.2"
},
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.1",
"lodash.set": "^4.3.2"
}
}