-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "fetch-pjax",
"version": "1.1.1",
"main": "dist/fetch-pjax.cjs.js",
"module": "dist/fetch-pjax.esm.js",
"browser": "dist/fetch-pjax.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/getdave/fetch-pjax.git"
},
"keywords": [
"fetch",
"pjax",
"ajax",
"javascript",
"js"
],
"author": "Dave Smith <hello@aheadcreative.co.uk> (https://aheadcreative.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashleygwilliams/my_package/issues"
},
"dependencies": {
"assign-deep": "^0.4.7",
"domify": "^1.4.0",
"lodash.bindall": "^4.4.0",
"lodash.curry": "^4.1.1",
"lodash.isempty": "^4.4.0",
"lodash.isnil": "^4.0.0",
"lodash.isstring": "^4.0.1",
"url-search-params-polyfill": "^3.0.0"
},
"devDependencies": {
"connect": "^3.6.6",
"cypress": "^2.0.4",
"rollup": "^0.57.0",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-node-resolve": "^3.3.0",
"serve-static": "^1.13.2",
"start-server-and-test": "^1.1.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start-server": "node server/server.js",
"cy:run": "cypress run --browser chrome",
"cy:open": "cypress open",
"pretest": "npm run build",
"test:dev": "start-server-and-test start-server http://localhost:8080 cy:open",
"test": "start-server-and-test start-server http://localhost:8080 cy:run"
},
"files": [
"dist"
]
}