-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.61 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.61 KB
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
{
"name": "sharpie",
"version": "0.2.3",
"description": "JavaScript text annotation library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "./bin/cli.js",
"scripts": {
"clean": "rm -rf dist && rm -rf lib && rm -rf docs && rm -rf bin",
"build-lib": "tsc --declaration",
"build-dist": "webpack",
"build-min": "NODE_ENV=production webpack",
"build-doc": "typedoc --out docs/",
"build-style": "cp src/*.css lib/ && cp src/*.css dist/",
"build": "npm run clean && npm run build-lib && npm run build-dist && npm run build-min && npm run build-doc && npm run build-style",
"lint": "tslint src/**/*.ts",
"test": "npm run lint && mocha --require ts-node/register src/*.test.ts",
"prepublishOnly": "npm run test && npm run build",
"preversion": "npm run test && npm run build",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stanford-policylab/sharpie.git"
},
"author": "Joe Nudell",
"license": "ISC",
"bugs": {
"url": "https://github.com/stanford-policylab/sharpie/issues"
},
"homepage": "https://github.com/stanford-policylab/sharpie#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"tap": "^14.5.0",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {}
}