-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.87 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
{
"name": "clean-assert",
"version": "3.0.0",
"description": "A simple, intuitive TDD assertion library",
"scripts": {
"lint": "eslint . --cache",
"test": "eslint . && npm run test:node",
"test:all": "eslint . && npm run test:node && npm run test:chrome && npm run test:firefox && npm run test:phantomjs",
"test:node": "mocha --colors --reporter dot",
"test:chrome": "karma start --colors --single-run --browsers Chrome",
"test:firefox": "karma start --colors --single-run --browsers Firefox",
"test:phantomjs:bundle": "browserify scripts/test-main.js --outfile scripts/test-bundle.js",
"test:phantomjs:run": "node_modules/.bin/phantomjs node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js scripts/test.html dot '{\"useColors\": true}'",
"test:phantomjs": "npm run test:phantomjs:bundle && npm run test:phantomjs:run && node scripts/test-cleanup.js",
"bundle": "browserify ./browser-export.js --outfile global.js",
"preversion": "npm run bundle && git add global.js"
},
"files": [
"index.d.ts",
"index.js",
"global.js",
"lib",
"docs"
],
"author": "Isiah Meadows",
"license": "ISC",
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^16.2.2",
"eslint": "^5.2.0",
"eslint-config-isiahmeadows": "^0.1.8",
"karma": "^2.0.5",
"karma-browserify": "^5.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"mocha": "^4.0.1",
"mocha-phantomjs-core": "^2.1.2",
"phantomjs-prebuilt": "^2.1.16",
"watchify": "^3.11.0"
},
"dependencies": {
"util-inspect": "^0.1.8"
},
"browser": {
"./lib/inspect.js": "./lib/browser-inspect.js"
},
"repository": "isiahmeadows/clean-assert",
"bugs": "https://github.com/isiahmeadows/clean-assert/issues",
"homepage": "https://github.com/isiahmeadows/clean-assert#readme"
}