-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "hairdresser",
"version": "0.3.1",
"description": "A universal js library for managing head DOM elements (title, link, and meta)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Giff Song <giff.song@gmail.com> (http://github.com/pawsong)",
"repository": {
"type": "git",
"url": "https://github.com/pawsong/hairdresser.git"
},
"license": "MIT",
"keywords": [
"head",
"document",
"meta",
"link",
"title",
"angular",
"react"
],
"files": [
"src",
"lib"
],
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"build:watch": "npm run build -- --watch",
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"test": "npm run lint && npm run test:all",
"test:all": "npm run test:node && karma start --single-run",
"test:node": "node test/jasmine-runner",
"test:watch": "karma start",
"test:cov": "rimraf coverage && TEST_COVERAGE=true karma start --single-run",
"test:coveralls": "TEST_COVERALLS=true karma start --single-run",
"test:saucelabs": "zuul -- test/*.test.ts",
"start": "npm run test:watch",
"docs:build": "rimraf docs && typedoc -out docs src/**",
"docs:publish": "npm run docs:build && gh-pages -d docs",
"preversion": "npm run prepublish",
"prepublish": "npm run build && npm test",
"publish": "npm run docs:publish"
},
"dependencies": {
"@types/invariant": "^2.2.28",
"invariant": "^2.2.1"
},
"devDependencies": {
"@types/jasmine": "^2.5.37",
"@types/node": "^6.0.46",
"browserify": "^13.1.1",
"browserify-istanbul": "^2.0.0",
"es5-shim": "^4.5.9",
"gh-pages": "^0.11.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"jasmine-spec-reporter": "^2.7.0",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-remap-coverage": "^0.1.2",
"karma-sauce-launcher": "^1.1.0",
"phantomjs": "^2.1.7",
"rimraf": "^2.4.2",
"ts-node": "^1.6.1",
"tsify": "^2.0.2",
"tslint": "^3.15.1",
"typedoc": "^0.5.1",
"typescript": "^2.0.6",
"zuul": "^3.11.1"
}
}