-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "jabstract",
"version": "1.0.7",
"description": "Test tool for overridable json fixtures in JS",
"repository": {
"type": "git",
"url": "https://github.com/internap/js-jabstract"
},
"main": "jabstract.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"prepack": "./node_modules/browserify/bin/cmd.js jabstract.js -o dist/jabstract-browser-es5.js --s jabstract -t [ babelify --presets [ env ] --plugins [ transform-object-assign ] ]",
"jshint": "./node_modules/jshint/bin/jshint . --exclude node_modules"
},
"files": [
"jabstract.js",
"package.json",
"dist",
"README.md",
"LICENSE",
"test"
],
"author": "Internap",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"jshint": "2.9.5",
"mocha": "4.0.1"
}
}