-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 KB
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
52
53
54
55
{
"name": "tartan-schema",
"version": "1.0.0",
"description": "Additional syntax support for tartan library.",
"keywords": [
"tartan",
"scotland",
"threadcount"
],
"main": "src/index.js",
"engines": {
"node": "^4.0.0",
"npm": "^2.0.0"
},
"scripts": {
"test": "mocha tests/*.js tests/*/*.js",
"build:dev": "NODE_ENV=development webpack --hide-modules --config webpack.config.development.js",
"build:dist": "NODE_ENV=production webpack --hide-modules --config webpack.config.production.js",
"build": "npm run build:dev && npm run build:dist",
"prepublish": "npm run build",
"review": "eslint src webpack.config.base.js webpack.config.development.js webpack.config.production.js"
},
"author": {
"name": "Levko Kravets",
"email": "levko.ne@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/thetartan/tartan-schema/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thetartan/tartan-schema.git"
},
"dependencies": {
"lodash": "^4.17.2",
"tartan": "^5.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.11.1",
"eslint-config-google": "^0.7.1",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"raw-loader": "^0.5.1",
"val-loader": "^0.5.0",
"webpack": "^1.13.3"
},
"contributors": [
{
"name": "Levko Kravets",
"email": "levko.ne@gmail.com"
}
]
}