forked from jsonicjs/jsonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
37
38
39
40
{
"name": "jsonic",
"version": "0.3.1",
"description": "A JSON parser that isn't strict.",
"main": "jsonic.js",
"scripts": {
"test": "jasmine-node ./test ; phantomjs test/run-jasmine.js test/jasmine.html",
"build": "./build.sh",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"`; echo TAG: v$REPO_VERSION; git commit -a -m v$REPO_VERSION; git push; git tag v$REPO_VERSION; git push --tags;",
"repo-publish": "npm run repo-tag; npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/rjrodger/jsonic.git"
},
"keywords": [
"json",
"parser"
],
"homepage": "https://github.com/rjrodger/jsonic",
"author": "Richard Rodger (http://richardrodger.com)",
"license": "MIT",
"files": [
"README.md",
"LICENSE",
"jsonic.js",
"jsonic-min.js",
"jsonic-min.map",
"jsonic-parser.js",
"jsonic-parser.pegjs"
],
"devDependencies": {
"jasmine-node": "^1.14.5",
"pegjs": "^0.8.0",
"phantomjs": "^1.8.2-3",
"uglify-js": "^2.8.29",
"underscore": "^1.8.3"
}
}