-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "text-model",
"version": "1.0.0",
"description": "A representational text model",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint index.js",
"test": "npm run lint && node_modules/.bin/karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nymag/text-model.git"
},
"keywords": [
"text",
"model",
"representational",
"formatting",
"rich",
"text"
],
"author": "New York Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/nymag/text-model/issues"
},
"homepage": "https://github.com/nymag/text-model#readme",
"dependencies": {
"domify": "^1.3",
"lodash": "^4.6.1"
},
"devDependencies": {
"browserify-istanbul": "^2.0.0",
"chai": "^3.2.0",
"coveralls": "^2.11.4",
"eslint": "^3.2.0",
"istanbul": "^0.4.2",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-browserify": "^5.0.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.0",
"karma-mocha": "^0.2.0",
"karma-sinon": "^1.0.4",
"mocha": "^3.0.0",
"sinon": "^1.15.4"
}
}