-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.48 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.48 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
{
"name": "ridge",
"version": "0.9.1",
"description": "Non-agnostic attempt to bring structure to backbone apps.",
"main": "./ridge.js",
"scripts": {
"clean": "rimraf *.js cjs mixins util views",
"lint": "eslint src",
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir cjs",
"build:es": "BABEL_ENV=es babel src --out-dir .",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run clean && npm run lint && npm run build",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/thecodebureau/ridge.git"
},
"keywords": [
"backbone"
],
"author": "The Code Bureau <info@thecodebureau.com> (https://thecodebureau.com)",
"contributors": [
"Linus Miller <linus.miller@thecodebureau.com>",
"Victor Nilsson <victor.nilsson@thecodebureau.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thecodebureau/ridge/issues"
},
"homepage": "https://github.com/thecodebureau/ridge",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-node6": "^0.3.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-register": "^6.18.0",
"eslint": "^3.9.0",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"rimraf": "^2.5.4",
"tap-spec": "^4.1.1",
"tape": "^4.6.2"
}
}