-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.68 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
52
53
54
55
56
{
"name": "lateralus",
"version": "1.1.2",
"description": "A UI component framework",
"license": "MIT",
"main": "dist/lateralus.js",
"author": {
"name": "Jeremy Kahn",
"email": "[email protected]",
"url": "https://github.com/jeremyckahn"
},
"scripts": {
"start": "webpack-dev-server --config webpack.test.config.js",
"build": "webpack",
"debug": "mocha debug -r jsdom-global/register ./node_modules/babel-core/register.js test/index.js",
"test": "mocha -r jsdom-global/register ./node_modules/babel-core/register.js test/index.js",
"test:watch": "nodemon --exec \"npm test\" --watch src --watch test",
"lint": "eslint -c .eslintrc src test",
"validate": "npm test && npm run lint",
"doc": "jsdoc -c .jsdoc src/*.js",
"setup": "npm install",
"version": "npm run generate-artifacts && git add -A",
"generate-artifacts": "npm run clean && npm run build && npm run doc",
"preversion": "npm run validate",
"postversion": "git push --follow-tags",
"clean": "rm -rf dist docs"
},
"engines": {
"node": ">=6.7.0"
},
"dependencies": {
"backbone": "~1.3.3",
"jquery": "~1.12.4",
"lodash-compat": "~3.10.2",
"mustache": "~0.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jellyvision/lateralus.git"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"chai": "~2.1.1",
"eslint": "^3.19.0",
"jsdoc": "^3.4.3",
"jsdom": "^10.1.0",
"jsdom-global": "^3.0.2",
"minami": "^1.2.3",
"mocha": "~2.2.0",
"nodemon": "^1.11.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
}
}