-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "botanist",
"version": "1.3.0",
"description": "A DSL for traversing and transforming tree structures based on structural rules",
"main": "dist/botanist.umd.js",
"module": "dist/modules/index.js",
"types": "dist/modules/index.d.ts",
"engines": {
"node": ">= 6"
},
"scripts": {
"test": "eslint . --ext ts --ext js && mocha -r ts-node/register 'test/**/*.ts'",
"build:clean": "rm -rf dist",
"build:modules": "tsc -p tsconfig.publish.json",
"build:umd": "rollup -c",
"build": "yarn build:clean && yarn build:modules && yarn build:umd",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salsify/botanist.git"
},
"author": "Dan Freeman",
"license": "MIT",
"bugs": {
"url": "https://github.com/salsify/botanist/issues"
},
"homepage": "https://github.com/salsify/botanist#readme",
"devDependencies": {
"@types/babel-core": "^6.25.4",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/sinon": "^5.0.1",
"babel-core": "^6.26.3",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"chai": "^3.5.0",
"eslint": "^4.19.1",
"mocha": "^3.2.0",
"rollup": "^0.59.4",
"sinon": "^1.17.3",
"ts-node": "^6.0.5",
"typescript": "^2.9.1",
"typescript-eslint-parser": "^15.0.0"
}
}