-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·62 lines (62 loc) · 1.4 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
57
58
59
60
61
62
{
"name": "pjax-es6",
"version": "0.2.4",
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
"keywords": [
"pjax",
"push",
"state",
"ajax",
"navigation",
"transition",
"animation"
],
"repository": "https://github.com/LimeSurvey/pjax",
"author": "Maxime Thirouin",
"license": "MIT",
"main": "dist/pjax.js",
"files": [
"index.js",
"lib",
"pjax.js"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"promise-polyfill": "^6.0.2",
"rollup": "^1.19.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
},
"scripts": {
"lint": "eslint src/**",
"build": "npm run standalone && npm run build-debug",
"standalone": "rollup -c rollup.prod.js",
"build-debug": "rollup -c rollup.debug.js",
"prepublish": "npm run standalone"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"semi": ["error", "always"]
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"parser": "babel-eslint"
}
},
"dependencies": {}
}