-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "floatl",
"version": "2.0.1",
"description": "A pragmatic implementation of the Float Label Pattern",
"homepage": "https://github.com/richardvenneman/floatl",
"bugs": {
"url": "https://github.com/richardvenneman/floatl/issues"
},
"license": "MIT",
"author": "Richard Venneman ([email protected])",
"files": [
"built"
],
"main": "built/floatl.cjs.js",
"module": "built/floatl.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/richardvenneman/floatl.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "karma start --single-run",
"tdd": "karma start",
"prepare": "npm run build"
},
"browser": "built/floatl.umd.js",
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^2.8.6",
"jasmine": "^3.0.0",
"jasmine-core": "^2.99.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.1",
"karma-notify-reporter": "^1.0.1",
"karma-sauce-launcher": "^1.2.0",
"karma-typescript": "^3.0.12",
"prettier": "1.17.1",
"puppeteer": "^1.0.0",
"rollup": "^0.68.2",
"rollup-plugin-typescript2": "^0.15.1",
"tslint-config-prettier": "^1.8.0",
"typescript": "^2.7.2"
}
}