-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "@stopify/elementary-js",
"version": "1.3.4",
"description": "JavaScript without sharp edges.",
"license": "BSD-3-Clause",
"repository": "github:arjunguha/ElementaryJS",
"main": "dist/index.js",
"private": false,
"files": [
"dist/"
],
"contributors": [
"Arjun Guha <[email protected]>",
"Sam Lee <[email protected]>",
"Joydeep Biswas <[email protected]>",
"Joseph Michael Spitzer (https://sp1tz.github.io)"
],
"dependencies": {
"@stopify/higher-order-functions": "~0.7.3",
"@stopify/project-interpreter": "1.1.5",
"@stopify/stopify": "^0.7.5",
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-types": "^6.26.0"
},
"devDependencies": {
"@types/babel-core": "^6.7.14",
"@types/babel-generator": "^6.7.14",
"@types/babel-traverse": "^6.7.17",
"@types/babel-types": "^6.7.16",
"@types/jest": "^26",
"@types/node": "^11.11.6",
"jest": "^26",
"jest-haste-map": "^26",
"jest-resolve": "^26",
"ts-jest": "^26",
"tslint": "^6.1.0",
"typescript": "^4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"prebuild": "echo \"export const EJSVERSION = '$(git rev-parse --short HEAD)';\" > src/version.ts",
"build": "tsc",
"clean": "rm -rf dist/",
"lint": "tslint src/*",
"test": "jest"
}
}