forked from keratin/authn-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 849 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
{
"name": "keratin-authn",
"version": "1.1.0",
"description": "Browser integration library for Keratin AuthN service.",
"main": "./dist/keratin-authn.js",
"module": "./dist/keratin-authn.module.js",
"types": "./dist/index.d.ts",
"author": "Lance Ivy",
"license": "LGPL-3.0",
"dependencies": {},
"devDependencies": {
"@types/es6-promise": "^0.0.32",
"gulp": "^3.9.1",
"gulp-qunit": "^1.5.0",
"rollup": "^0.49.3",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-uglify": "^2.0.1",
"typescript": "^2.0.10"
},
"scripts": {
"release": "yarn problems && yarn test && yarn build && yarn publish",
"problems": "yarn tsc --noEmit",
"build": "yarn clean && yarn compile && rollup -c && cp lib/*.d.ts dist",
"test": "gulp test",
"compile": "yarn tsc",
"clean": "rm -rf dist"
}
}