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 7
/
package.json
74 lines (74 loc) · 2.64 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-jsonld-editor",
"version": "5.1.2",
"description": "React component for editing JSON-LD",
"repository": {
"type": "git",
"url": "https://github.com/rybesh/react-jsonld-editor.git"
},
"files": [
"lib",
"src/style.css"
],
"main": "lib/Editor.js",
"scripts": {
"lint": "eslint --ext .jsx src demo/src",
"precompile": "npm -s run lint",
"compile": "babel src -d lib --source-maps inline",
"postcompile": "cp src/*.json lib",
"css": "cssnext src/src.css src/style.css",
"develop-target": "budo $npm_config_target --css src/style.css --live -- -t [ babelify --sourceMaps inline ] --extension=.jsx",
"develop": "npm -s run develop-target --target=src/develop.js",
"precompile-demo": "npm -s run compile",
"compile-demo": "babel demo/src -d demo/lib",
"prestandalone-demo": "npm -s run predevelop-demo && mkdir -p demo/standalone",
"standalone-demo": "NODE_ENV=production browserify demo/lib | uglifyjs -c > demo/standalone/bundle.js",
"poststandalone-demo": "cp demo/src/index.html src/style.css demo/standalone && zip -r standalone.zip demo/standalone demo/data/indexes",
"presetup-demo-data": "npm -s run compile-demo",
"setup-demo-data": "cd demo/data && make -B vocabs && make",
"predevelop-demo": "npm -s run compile && if [ ! -d demo/data/indexes ]; then npm -s run setup-demo-data; fi",
"develop-demo": "npm -s run develop-target --target=demo/src",
"pretest": "npm -s run compile",
"test": "tape lib/tests/*.js lib/*/tests/*.js | tap-spec",
"prepublish": "npm -s run test && babel src -d lib"
},
"author": "Ryan Shaw",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-runtime": "^6.1.2",
"babel-plugin-transform-strict-mode": "^6.8.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babelify": "^7.2.0",
"budo": "^8.0.4",
"cssnext": "^1.8.4",
"enzyme": "^2.5.1",
"immutablediff": "^0.4.2",
"jsdom": "^9.8.0",
"jsdom-global": "^2.1.0",
"n3": "^0.4.5",
"node-uuid": "^1.4.7",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.2",
"uglify": "^0.1.5"
},
"dependencies": {
"immutable": "^3.7.6",
"immutable-jsonld": "^2.1.1",
"react-icons": "^2.2.1",
"react-redux": "^4.4.5",
"rebass": "^0.4.0-beta.8",
"rebass-autosuggest": "^1.1.3",
"redux": "^3.5.2",
"redux-devtools-extension": "^1.0.0",
"reselect": "^2.5.1"
},
"peerDependencies": {
"react": "^15.3.1"
}
}