-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "linked-data-browser",
"version": "0.0.0",
"description": "browse through linked data graphs",
"main": "index.js",
"scripts": {
"start": "budo index.js -d --serve bundle.js --live",
"build": "browserify index.js -o bundle.js -g uglifyify",
"lint": "snazzy",
"format": "snazzy --format",
"test": "browserify test.js | smokestack | tap-spec",
"dist": "mkdir -p dist && bash -c 'cp *.{js,html} dist'",
"push": "gh-pages -d dist",
"deploy": "npm run build && npm run dist && npm run push"
},
"browserify": {
"transform": [
"babelify",
"sheetify/transform"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ahdinosaur/linked-data-browser"
},
"author": "ahdinosaur",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahdinosaur/linked-data-browser/issues"
},
"homepage": "https://github.com/ahdinosaur/linked-data-browser",
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.0.14",
"babel-plugin-transform-react-jsx": "^6.0.18",
"babel-plugin-transform-runtime": "^6.1.2",
"babel-preset-es2015": "^6.1.2",
"babel-runtime": "^6.0.14",
"babelify": "^7.2.0",
"create-action-types": "^2.0.0",
"jsonld": "^0.4.2",
"linkeddata-vocabs": "^0.7.0",
"lodash": "^3.10.1",
"lodash.flatten": "^3.0.2",
"lodash.map": "^3.1.4",
"lodash.mapvalues": "^3.0.1",
"lodash.uniq": "^3.2.2",
"n3": "github:rubenverborgh/N3.js#04f4e21f4ccb351587dc00a3f26340b28d4bb10f",
"read-blob": "^1.1.0",
"redux": "^3.0.3",
"redux-actions": "^0.8.0",
"redux-effects": "^0.4.0",
"redux-effects-events": "^0.2.5",
"redux-effects-fetch": "github:ahdinosaur/redux-effects-fetch",
"redux-effects-location": "^0.1.11",
"redux-logger": "^2.0.4",
"redux-multi": "^0.1.9",
"redux-thunk": "^1.0.0",
"reselect": "^2.0.0",
"sheetify": "github:ahdinosaur/sheetify#e26868adb5cc83de37fdd9a5aec2067f6c8060b9",
"vdom-element": "^0.2.3",
"vdux": "^0.1.8",
"virtual-component": "^0.2.5"
},
"devDependencies": {
"browserify": "^10.0.0",
"budo": "^4.0.0",
"gh-pages": "^0.3.0",
"smokestack": "^3.3.0",
"snazzy": "^2.0.1",
"tap-spec": "^4.0.2",
"tape": "^4.0.0",
"uglifyify": "^3.0.1",
"watchify": "^3.1.0"
}
}