-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "chocolatest",
"version": "0.1.1",
"description": "A simple and tiny test framework that evaluates synchronous javascript (for now) in the browser",
"bugs": {
"url": "https://github.com/nicoabie/chocolatest/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nicoabie/chocolatest.git"
},
"main": "./lib/chocolatest.js",
"module": "./lib/chocolatest.esm.js",
"typings": "./lib/chocolatest.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf lib/es5 lib/es6",
"build": "npm run compile:es5 && npm run compile:es6 && npm run bundle",
"compile:es5": "tsc --module es6 --target es5 --outDir lib/es5",
"compile:es6": "tsc --module es6 --target es6 --outDir lib/es6",
"bundle": "rollup --config rollup.config.js && npm run clean"
},
"keywords": [
"browser",
"test",
"javascript",
"assertions"
],
"author": "nicoabie",
"license": "MIT",
"devDependencies": {
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"typescript": "^3.0.3"
},
"dependencies": {
"assert": "^1.4.1",
"vm-browserify": "^1.1.0"
}
}