This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.71 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": "edit-with-lov",
"version": "1.0.0",
"private": true,
"description": "Demo of editing JSON-LD with LOV vocabs",
"main": "lib/index.js",
"files": "lib",
"scripts": {
"lint": "eslint src",
"transpile": "babel src -d lib --source-maps inline",
"prebuild": "npm -s run lint",
"build": "npm -s run transpile",
"precss": "mkdir -p lib",
"css": "cat node_modules/react-jsonld-editor/src/style.css node_modules/highlight.js/styles/default.css > lib/style.css",
"predevelop": "npm -s run css",
"develop": "budo src/standalone.js --css lib/style.css --live -- -t [ babelify --sourceMaps inline ]",
"prestandalone": "npm -s run build && npm -s run css && mkdir -p standalone",
"standalone": "NODE_ENV=production browserify lib/standalone.js | uglifyjs -c > standalone/bundle.js",
"poststandalone": "cp src/index.html lib/style.css standalone && cd standalone && zip ../standalone.zip *"
},
"author": "Ryan Shaw",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-plugin-transform-runtime": "^6.1.2",
"babel-plugin-transform-strict-mode": "^6.8.0",
"babel-preset-es2015": "^6.1.2",
"babelify": "^7.2.0",
"budo": "^8.0.4",
"eslint": "^2.12.0",
"uglify": "^0.1.5"
},
"dependencies": {
"file-saver": "^1.3.3",
"highland": "^2.8.1",
"highlight.js": "^9.7.0",
"immutable": "^3.8.1",
"n3": "^0.4.5",
"rdf-ns": "0.0.2",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-hyperscript": "^2.4.0",
"react-jsonld-editor": "^5.1.2",
"react-lowlight": "^1.0.2",
"react-redux": "^4.4.5",
"rebass": "^0.4.0-beta.8",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.3"
}
}