-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "simplerdf",
"version": "0.2.14",
"description": "RDF as easy as js objects",
"main": "dist/index.js",
"jsnext:main": "index.js",
"scripts": {
"test": "npm run build && mocha",
"build": "mkdir -p dist && babel --ignore node_modules,dist,examples ./ -d dist",
"build-browser": "mkdir -p dist && browserify -e ./ -t babelify --standalone SimpleRDF > dist/simplerdf.browser.js",
"minify": "mkdir -p dist && browserify -e ./ -t babelify --standalone SimpleRDF | uglifyjs -c > dist/simplerdf.browser.min.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/nicola/simplerdf.git"
},
"author": "Nicola Greco <[email protected]> (http://nicolagreco.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicola/simplerdf/issues"
},
"homepage": "https://github.com/nicola/simplerdf",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^12.0.1",
"mocha": "^2.4.5",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"rdf-ext": "^0.3.0",
"rdf-store-ldp": "^0.3.1"
}
}