forked from turbolinks/turbolinks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1015 Bytes
/
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": "turbolinks-csp",
"version": "5.3.0-beta.5",
"description": "Turbolinks fork with support for Content Security Policy headers",
"module": "dist/index.js",
"main": "dist/turbolinks.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rience/turbolinks.git"
},
"keywords": [
"turbolinks",
"browser",
"pushstate"
],
"author": "javan, packagethief, sstephenson, rience",
"license": "MIT",
"bugs": {
"url": "https://github.com/turbolinks/turbolinks/issues"
},
"homepage": "https://github.com/turbolinks/turbolinks#readme",
"devDependencies": {
"intern": "^4.4.1",
"leadfoot": "^1.7.6",
"rollup": "^1.1.2",
"rollup-plugin-typescript2": "^0.19.2",
"typescript": "^3.3.1"
},
"scripts": {
"clean": "rm -fr dist",
"build": "tsc -b && rollup -c",
"watch": "rollup -wc",
"start": "intern serveOnly",
"test": "NODE_OPTIONS=--inspect intern"
}
}