forked from estrattonbailey/operator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 KB
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
{
"name": "operator.js",
"version": "1.0.4",
"description": "",
"main": "index.js",
"jsnext:main": "index.js",
"scripts": {
"build": "mkdir -p browser && browserify index.js --standalone operator -p [minifyify --no-map] > browser/index.js",
"size": "bundle-size ./browser/index.js",
"test": "ava test -v"
},
"browserify": {
"debug": true,
"cache": {},
"packageCache": {},
"extension": [
"js"
],
"transform": [
"babelify"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/estrattonbailey/operator.js.git"
},
"keywords": [
"ajax",
"routing",
"pjax",
"ajaxify",
"single page application"
],
"author": "estrattonbailey",
"license": "MIT",
"bugs": {
"url": "https://github.com/estrattonbailey/operator.js/issues"
},
"homepage": "https://github.com/estrattonbailey/operator.js#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"bundle-size": "^0.7.0",
"jsdom": "^9.4.1",
"jsdom-global": "^2.0.0",
"query-string": "^4.2.3",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"minifyify": "^7.3.3",
"watchify": "^3.7.0"
},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"delegate": "^3.0.1",
"loop.js": "0.0.1",
"nanoajax": "^0.4.3",
"navigo": "^2.2.0",
"tarry.js": "^1.0.0"
}
}